.main_info{
    margin-bottom: 100px;
}
.main_table_inner {
    display: flex;
    justify-content: center; 
    padding: 20px;
    box-sizing: border-box;
    overflow-x: auto; 
}
.school-table {
    width: 100%;
    max-width: 89em;

     min-width: 33em;
    border-collapse: collapse; 
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(16, 104, 255, 0.1);
    font-weight: 400;
    font-size: 18px;
    color: #333;
    overflow: hidden;
}


.school-table td, 
.school-table th {
    padding: 15px 20px;
    border: 1px solid #cbdcfb;
    vertical-align: middle;
}

.school-table td:first-child {
    background-color: #d9e6ff;
    font-weight: 600;
    color: #0a3ca5;
    width: 35%;
}

.school-table tr:nth-child(even) {
    background-color: #f0f6ff;
}

.school-table tr:last-child td {
    border-bottom: 1px solid #cbdcfb;
}


.teacher_image {
    max-width: 235px;
    max-height: 305px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu_category_block{
    margin-bottom: 40px;
}
.categories-menu{
    font-weight: 400;
    color: #1068ff;
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}


@media (max-width: 768px) {
  .school-table {
        font-size: 16px;
        max-width: 75em; 
        min-width: 20em; 
    }
    .main_table_inner {
        padding: 10px;
    }
}

@media (max-width: 480px) {
  
    .main_table_inner {
        padding: 10px;
    }
    .school-table {
        font-size: 14px;
        min-width: 100%;
    }
}