

.teachers-table {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 906px!important;
}    .teacher-item {     border: 2px solid #FFDC33;     margin-bottom: 20px;     border-radius: 5px;     overflow: hidden;     background-color: white;   }    .teacher-main-info {     display: flex;     padding: 15px;     border-bottom: 2px solid #FFDC33;   }    .teacher-photo-block {     width: 150px;     margin-right: 20px;     text-align: center;   }    .photo-container {     width: 150px;     height: 150px;     border-radius: 50%;     overflow: hidden;     margin: 0 auto;     border: 2px solid #FFDC33;   }    .teacher-photo {     width: 100%;     height: 100%;     object-fit: cover;   }    .teacher-name {     font-weight: bold;     font-size: 18px;   }    .teacher-details {     flex: 1;   }    .teacher-category {     font-weight: bold;     margin-top: 5px;   }    .certificates-block {     background-color: #FFF9E6;     padding: 10px;     border-radius: 5px;     border-left: 3px solid #FFDC33;   }    .certificate-item {     position: relative;     padding-left: 5px;     margin-bottom: 5px;   }    .teacher-collapsible {     padding: 0 15px;     border-top: none;   }    .toggle-block {     margin: 10px 0;   }    .toggle-button {     background-color: #f5f5f5;     border: 1px solid #FFDC33;     padding: 10px 15px;     cursor: pointer;     font-weight: bold;     position: relative;     border-radius: 4px;   }    .toggle-button:after {     content: '▼';     position: absolute;     right: 15px;   }    .toggle-button.expanded:after {     content: '▲';   }    .collapsible-content {     display: none;     padding: 10px 0;   }    .collapsible-content.show {     display: block;   }    .video-toggle {     padding: 10px;     border-radius: 4px;     cursor: pointer;     display: flex;     align-items: center;     transition: background-color 0.3s;   }    .video-toggle:hover {     background-color: #FFF9E6;   }    .video-container {     display: none;     margin-top: 10px;   }    .video-container.show {     display: block;   }    @media (max-width: 768px) {     .teacher-main-info {       flex-direction: column;     }     .teacher-photo-block {       width: 100%;       margin-right: 0;       margin-bottom: 15px;     }     .photo-container {       width: 120px;       height: 120px;     }     .video-container iframe {       height: 200px;     }   }