* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
 overflow-x: hidden;
-webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

body {
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    width: 100%;
    max-width: 100vw;

    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #8197A8;
    padding: 0;
}

.ck-content-doctor {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a1a;
    margin-top: 20px;
}

.ck-content-doctor h2,
.ck-content-doctor h3 {
    margin-top: 1.5em;
    font-weight: 600;
    color: #0C253E;
}

.ck-content-doctor ul {
    padding-left: 20px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.ck-content-doctor ul li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.ck-content-doctor p {
    margin-bottom: 1rem;
    white-space: normal;
    word-break: break-word;
}

.ckeditor-content {
    max-width: 1260px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0C253E;
    line-height: 1.8;
    font-size: 18px;
}

/* Заголовки */
.ckeditor-content h1,
.ckeditor-content h2,
.ckeditor-content h3 {
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.ckeditor-content h1 {
    font-size: 32px;
}

.ckeditor-content h2 {
    font-size: 28px;
}

.ckeditor-content h3 {
    font-size: 24px;
}

/* Ссылки */
.ckeditor-content a {
    color: #007bff;
    text-decoration: underline;
}

.ckeditor-content a:hover {
    color: #0056b3;
}

/* Списки */
.ckeditor-content ul,
.ckeditor-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Изображения */
.ckeditor-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1rem 0;
    display: block;
}

/* Таблицы */
.ckeditor-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.ckeditor-content table th,
.ckeditor-content table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}


@media (max-width: 1100px) {

}



.site-header-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 99vw;
    z-index: 999;
    background: transparent; /* Или добавь светлый полупрозрачный фон */
}

.site-header {
    position: relative;
    margin: 0 auto;
    top: 0;
    width: 95vw;

    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    background: #fff;
    box-shadow: 0 4px 30px 0 rgba(100, 119, 141, 0.11);
    z-index: 1001;
}

.container {

    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
}

.menu {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid white;
    padding: 30px 40px;
    width: 100%;
    height: 60px;
    border-radius: 0 0 30px 30px;
    background-color: white;

}


.logo {
    display: flex;
    align-items: center;
    margin-left: 25px;
}

.logo-img {
    height: 40px;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    margin: 0 30px;
    padding: 0 20px;
    width: 100%;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #000;
    padding: 8px 0;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #555;
}


.header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-results {
    background-color: #D61F1F;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;

}

.btn-results:hover {
    background-color: #b81b1b;
}

.lang-switch {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    margin-right: 25px;
}

.lang-btn {
    background: none;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    color: #555;
    transition: background-color 0.2s, color 0.2s;

}

.lang-dropdown {
    display: none;
}

.lang-btn:hover {
    background-color: #f0f0f0;
}

.lang-btn.active {
    background-color: #8197A8;
    color: #fff;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    list-style: none;
    margin-top: 12px;
    padding: 8px 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s ease-in-out;
    z-index: 100;
    width: 170px;
}

.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item a {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;

}

.dropdown-item a:hover {
    background-color: #f5f5f5;
}


.nav-item.services .dropdown-menu {
    width: 620px;
    padding: 20px;

}

.services-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}

.services-column {
    list-style: none;
    padding: 0;
    margin: 0;

}

.services-column li {
    margin-bottom: 10px;


}

.services-column li a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;

}

.services-column li a:hover {
    color: #000;
}

.services-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;


}

.services-logo .logo-img {
    height: 60px;
}

.services-logo .logo-icon {
    height: 40px;
}

.nav-item.departments .dropdown-menu {
    width: 900px;
    padding: 20px 30px;
}

.departments-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.departments-column {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 30%;
}

.departments-column li {
    margin-bottom: 10px;
}

.departments-column li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.2s;
}

.departments-column li a:hover {
    color: #000;
}

.site-header .dropdown-menu {
    z-index: 100;
}


section {
    background-color: #8197A8;
}


.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-item {
    position: relative;
    margin: 0 15px;

}

.nav-link {
    position: relative;
    text-decoration: none;
    color: #000;
    padding: 8px 0;
    transition: color 0.2s;


}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #D61F1F;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}


.nav-link:hover {
    color: #D61F1F;
}


.dropdown-item a {
    position: relative;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 8px 16px;
    transition: color 0.2s;

}

.dropdown-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #D61F1F;
    transition: width 0.3s ease;

}

.dropdown-item a:hover::after {
    width: 100%;
}

.dropdown-item a:hover {
    color: #D61F1F;
}

.services-column li a {
    position: relative;
    color: #333;
    font-size: 16px;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;

}

.services-column li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #D61F1F;
    transition: width 0.3s ease;

}

.services-column li a:hover::after {
    width: 100%;
}

.services-column li a:hover {
    color: #D61F1F;
}

.departments-column li a {
    position: relative;
    color: #333;
    font-size: 16px;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;

}

.departments-column li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #D61F1F;
    transition: width 0.3s ease;
}

.departments-column li a:hover::after {
    width: 100%;
}

.departments-column li a:hover {
    color: #D61F1F;
}


.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110; /* над всем остальным */
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #0C253E;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.open .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 100;
    padding: 80px 20px 20px;
    overflow-y: auto;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    margin-bottom: 16px;
}

.mobile-nav-item a,
.mobile-nav-item .submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    color: #0C253E;
    background: none;
    border: none;
    width: 100%;
    padding: 8px 0;
    cursor: pointer;
}


.mobile-nav-item .arrow {
    transition: transform 0.2s;
}

.mobile-nav-item.has-submenu .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 12px;
}

.mobile-nav-item.has-submenu.open .mobile-submenu {
    max-height: 500px;
}

.mobile-nav-item.has-submenu.open .arrow {
    transform: rotate(180deg);
}

.mobile-submenu li {
    margin-bottom: 12px;
}

.mobile-submenu li a {
    font-size: 16px;
    color: #333;
}

.about-us-title h1 {
    font-size: 150px;
    color: white;
    margin: 4rem 50px 0;
    font-weight: inherit;

}

.about-us-title p {
    color: white;
    margin: 0 50px;
    width: 677px;
    line-height: 25px;
}


.footer-about-us {
    display: flex;
    justify-content: space-between;

    padding: 50px 50px 0;
}


.btn-scroll-down {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 20px;
    transition: background-color 0.2s;
}

.btn-scroll-down:hover {
    background-color: #f0f0f0;
}

.btn-scroll-down .icon-arrow {
    width: 16px;
    height: 16px;
}


.social-icons {
    display: flex;
    gap: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    overflow: hidden;
    transition: transform 0.2s ease, background-color 0.2s;
}

.social-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-link:hover {
    background-color: #0C253E;
    transform: scale(1.1);
}

.social-link:hover img {
    filter: invert(100%);
}


.about-main-section {
    background-color: #FFFFFF;
    border-radius: 15px 15px 0 0;
    margin: 40px 40px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;


}

.about-container {
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 0 10px;

}


.about-tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #0C253E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.about-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: lighter;
    line-height: 1.2;
    color: #0C253E;
    margin-bottom: 24px;
}

.about-paragraph {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #0C253E;
    margin-bottom: 20px;

}

.about-subheading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: lighter;
    color: #0C253E;
    margin-top: 32px;
    margin-bottom: 16px;

}

.about-list {
    list-style: disc inside;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #0C253E;
    line-height: 1.5;


}


.clinic-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    min-height: 400px;
}

.clinic-image {
    width: 600px;
    height: 700px;
    display: block;
    object-fit: cover;
    border-radius: 15px 20px;


}

.director-card {
    position: absolute;
    bottom: 70px;
    right: 20px;
    width: 250px;
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 16px;
    z-index: 2;
}

.director-photo {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.director-info {
    margin-top: 12px;
    text-align: center;
}

.director-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    color: #0C253E;
    margin-bottom: 6px;
    line-height: 1.2;
}

.director-position {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #555555;
    line-height: 1.4;
}

.pills-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
}

.pills-row {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.pill-btn {
    background-color: rgba(12, 37, 62, 0.8); /* тёмно-синий с прозрачностью */
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 20px;
    padding: 12px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    cursor: pointer;
    width: 100px;
    transition: background-color 0.2s, transform 0.2s;
}

.pill-btn:hover {
    background-color: rgba(12, 37, 62, 1);
    transform: translateY(-2px);
}


.about-us-video {
    margin-top: 5rem;
}


.director-message-container {
    padding: 80px 20px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;


}

.director-photo-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    border-radius: 15px;
    overflow: hidden;
}

.director-photo-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

.director-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    z-index: 2;
}

.director-play-overlay:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.director-play-icon {
    width: 32px;
    height: 32px;
    stroke: #0C253E;

}


.director-text-wrapper {
    flex: 1 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


.director-position-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #0C253E;
    margin: 0;
    line-height: 1.4;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.director-name-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    color: #0C253E;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: lighter;
}

.director-message-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
}

.director-message-text p {
    margin-top: 0;
    margin-bottom: 16px; /* расстояние между абзацами */
}

.director-message-text p:last-child {
    margin-bottom: 0;
}


.team-and-certificates-container {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    padding: 0 20px;
    align-content: center;
    align-items: center;

}


.team-text-wrapper {
    max-width: 60%;

}

.team-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    color: #0C253E;
    margin: 0 0 16px;
    line-height: 1.2;
    font-weight: lighter;

}

.team-description p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 16px;
}

.team-description p:last-child {
    margin-bottom: 0;
}


.certificate-wrapper {
    flex: 2 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}


.certificate-img {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.reviews-container {
    margin: 100px auto 0;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 0 20px;
}

.reviews-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.reviews-tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #0C253E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}


.reviews-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    color: #0C253E;
    margin: 0 0 32px;
    line-height: 1.2;
    font-weight: lighter;
}

.review-card {
    position: relative;
    background-color: #E5E5E5;
    border-radius: 15px;
    padding: 32px 32px 48px 32px;
    overflow: hidden;
}

.quote-icon {
    position: absolute;
    top: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-text {
    margin-left: 72px; /* 48px ширина SVG + 24px gap */
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #0C253E;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: lighter;
}

.review-divider {
    border: none;
    height: 1px;
    background-color: #B0B0B0;
    margin: 0 0 16px;
}

.review-author {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #0C253E;
    margin: 0 0 32px;
    line-height: 1.4;
}

.review-navigation {
    position: absolute;
    bottom: 16px;
    left: 32px;
    right: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-btn {
    background-color: #0C253E;
    border: none;
    border-radius: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.nav-btn:hover {
    background-color: #0A1F33;
    transform: translateY(-2px);
}

.nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: #FFFFFF;
}

.reviews-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.review-image {
    display: block;
    width: 100%;

    object-fit: cover;
    border-radius: 15px;
}


.faq-section {
    background-color: #0C253E; /* Темно-синий фон */
    border-radius: 20px; /* Скруглённые углы */
    margin: -60px 40px;
    padding: 60px 20px;


}

.faq-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.faq-title-divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    margin-bottom: 32px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question span:first-child {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.4;
    text-align: left;
}

.faq-toggle-icon {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    color: #FFFFFF;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0;
}

.faq-answer p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 16px 0;
}

.faq-answer ul {
    padding-left: 20px;
       color: #FFFFFF;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 8px 0;
       color: #FFFFFF;
}

.faq-item.open .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-item:last-child {
    border-bottom: none;
}


.site-footer {
    background-color: #FFFFFF; /* Белый фон */
    color: #0C253E; /* Основной темно-синий цвет текста */
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: -10px 40px;
    border-radius: 20px;

}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 20px;
    gap: 40px;
}


.footer-col {
    flex: 1 1 180px;
    min-width: 180px;
}

.footer-about {
    flex: 2 1 300px;
}

/* Логотипы в футере */
.footer-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 48px;
}

.footer-logo-icon {
    height: 32px;
}

/* Описание клиники */
.footer-about-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4A4A4A;
    margin-bottom: 24px;

}

/* Социальные иконки */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link img {
    width: 24px;
    height: 24px;
    transition: opacity 0.2s ease;
}

.social-link:hover img {
    opacity: 0.7;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #0C253E;
    margin-bottom: 16px;
}

/* Список ссылок */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-link {
    font-size: 14px;
    color: #4A4A4A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #0C253E;
}

.footer-address-text {
    font-size: 14px;
    color: #4A4A4A;
    line-height: 1.6;
}


.footer-contacts-text {
    font-size: 14px;
    color: #4A4A4A;
    line-height: 1.6;
}

.footer-link-phone,
.footer-link-email {
    color: #4A4A4A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link-phone:hover,
.footer-link-email:hover {
    color: #0C253E;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #E0E0E0;
    padding: 20px;
    margin: 0 20px 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom-text {
    font-size: 12px;
    color: #4A4A4A;
    line-height: 1.4;
}

.footer-bottom-left,
.footer-bottom-center,
.footer-bottom-right {
    flex: 1 1 200px;
    min-width: 200px;
    text-align: left;
}

.footer-bottom-center {
    text-align: center;
}

.footer-bottom-right {
    text-align: right;
}


.l-d-section, .d-section {
    background-color: #FFFFFF;
    padding: 40px 20px 120px;

    border-radius: 15px; /* Скруглённые углы секции */
    margin: 50px 40px 0;


}

/* Заголовок секции */
.l-d-title, .d-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 46px;
    color: #0C253E;
    margin-bottom: 5rem;
    margin-left: 2rem;
    text-transform: uppercase;


}

/* Контейнер для всех карточек руководителей */
.l-d-container {

    display: flex;
    gap: 46px;
    justify-content: space-between; /* Центрируем по горизонтали */
    flex-wrap: wrap; /* На узких экранах карточки перейдут в несколько рядов */
    margin: 2rem 4rem;
}


.l-d-item {
    position: relative; /* Чтобы подпись могла позиционироваться относительно блока */
    width: 30%;
    overflow: hidden; /* Скрываем то, что выходит за границы */
    border-radius: 15px; /* Скруглённые углы самой карточки */
    cursor: pointer; /* Чтобы при наведении был вид курсора-«руки» */
    transition: transform 0.3s ease; /* Легкое увеличение при наведении */
}


/* Эффект чуть “вырастания” карточки при hover */
.l-d-item:hover {
    transform: scale(1.02);
}

/* Изображение руководителя */
.l-d-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 15px; /* Скругляем углы согласно родительскому .leader-item */
}

/* Подпись (caption) – по умолчанию «спрятана» за границей снизу */
.l-d-caption {
    position: absolute;
    bottom: -240px; /* Сдвигаем вниз за границы блока */
    left: 50%;
    transform: translateX(-50%);
    width: 80%; /* Почти столько же, сколько и .leader-item, но с полем */
    background-color: rgba(0, 0, 0, 0.6); /* Полупрозрачный чёрный фон */
    color: #FFFFFF;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    transition: bottom 0.3s ease-in-out; /* Плавный подъём при наведении */
    pointer-events: none; /* Чтобы при наведении на caption всё равно срабатывал hover на .leader-item */
}

/* Когда на .leader-item навели курсор, подпись «выезжает» вверх */
.l-d-item:hover .l-d-caption {
    bottom: 20px; /* Отступ от низа картинки до подписи */
}

/* Имя руководителя в подписи */
.l-d-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    margin: 0 0 8px;
    line-height: 1.2;
}

/* Должность в подписи */
.l-d-position {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
}


.contact-us-section {
    background-color: #11304E; /* Тёмно-синий фон, как на скриншоте */
    padding: 40px 20px; /* Отступ сверху/снизу и по бокам */
    border-radius: 15px; /* Скруглённые углы */
    margin: -60px 40px; /* Чтобы отделить секцию от соседних блоков */
    color: #FFFFFF; /* Белый цвет текста по умолчанию */
    font-family: 'Plus Jakarta Sans', sans-serif;
    height: 400px;

}

/* 2) Контейнер с двумя колонками */
.contact-us-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 0 auto;
    flex-wrap: wrap; /* Чтобы на узких экранах колонки переходили в ряд */
    gap: 24px; /* Расстояние между “левым” и “правым” блоками */
}

/* ==================== ЛЕВЫЙ БЛОК ==================== */
.contact-us-left {
    flex: 1 1 300px;
    min-width: 280px;
}

/* Заголовок “Свяжитесь с нами уже сегодня!” */
.contact-us-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

/* Тонкая разделительная линия (под заголовком) */
.contact-us-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 0 24px 0;
}

/* Блок с рабочим временем */
.working-hours {
    font-size: 16px;
    line-height: 1.6;
}

.working-hours-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.working-hours p {
    margin: 4px 0;
}

/* ==================== ПРАВЫЙ БЛОК ==================== */
.contact-us-right {
    flex: 1 1 400px;
    min-width: 320px;
    display: flex;
    align-items: center;
    position: relative;
}

/* Контейнер для бегущей надписи */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    /* устанавливаем высоту “окна”, через которое видео (текст) будет «бежать» */
    height: 60px; /* Можно подстроить под желаемый размер текста */
    position: relative;
}

/* Внутренний контейнер, который будет двигаться влево */
.marquee-content {
    display: flex;
    align-items: center;
    /* Тут мы указываем анимацию – keyframes ниже */
    animation: marquee-scroll 10s linear infinite;
    /* Обязательно запретить перенос и выравнить по центру по высоте (height родителя = 60px). */
}

/* Текстовая часть внутри бегущей строки */
.marquee-text {
    font-size: 48px;
    font-weight: 600;
    white-space: nowrap; /* Запрещаем перенос на новую строку */
    margin-right: 64px; /* Расстояние между повторами текста */
    color: #FFFFFF;
}

/* Иконка-стрелка справа */
.contact-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.contact-arrow:hover {
    background-color: #f0f0f0;
    transform: translateY(-50%) scale(1.05);
}

/* ==================== КЛЮЧЕВЫЕК ФРЕЙМСЫ ДЛЯ АНИМАЦИИ ==================== */
/* Мы будем смещать .marquee-content влево начиная с translateX(0) до -50% его ширины.
   При этом текст внутри повторяется несколько раз, чтобы при прокрутке не было «провалов». */

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


.international-section {
    background-color: #FFFFFF;
    margin: 40px 40px;
    padding: 60px 20px;
    border-radius: 20px;
}

.international-container {
    display: flex;
    gap: 40px;
    margin: 0 40px;
    align-items: flex-start;
}

/* === Левая колонка === */
.international-text {
    flex: 2;
}

.international-tagline {
    display: block;
    font-size: 14px;
    color: #0C253E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.international-title {
    font-size: 36px;
    color: #0C253E;
    margin: 0 0 24px;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;

}


/* === Правая колонка === */
.international-media {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.media-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 600px;
    width: 700px;
}


.play-button {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color .2s, transform .2s;
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.play-icon {
    width: 24px;
    height: 24px;
    fill: #0C253E;
}

.int-footer {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.int-footer img {
    width: 500px;
    height: 260px;
    /* добавляем плавную анимацию для трансформации */
    transition: transform 0.3s ease;
    /* на всякий случай центрируем точку масштабирования */
    transform-origin: center center;
    object-fit: cover;
    margin: 0 15px;
}

.int-footer img:hover {
    /* лёгкое «вырастание» при наведении */
    transform: scale(1.05);
}


/* === Секция ДМС === */
.insurance-section {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 60px 40px;
    margin: 40px 40px;
}

/* общий контейнер */
.insurance-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;

    margin: 0 auto;
}

/* ==== Блок «Добро пожаловать» ==== */
.insurance-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.insurance-main-image {
    display: block;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
    width: 600px;
    height: 600px;
}

.insurance-image-wrapper:hover .insurance-main-image {
    transform: scale(1.02);
}

/* кнопка Play */
.insurance-play {
    position: absolute;
    top: 20px;
    left: 550px;
    width: 48px;
    height: 48px;
    background: rgba(214, 31, 31, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.insurance-play:hover {
    transform: scale(1.1);
}

/* текстовая колонка */
.insurance-tagline {
    font-size: 14px;
    color: #0C253E;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}

.insurance-title {
    font-size: 32px;
    color: #0C253E;
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: lighter;
}

.insurance-right p {
    font-size: 16px;

}

.insurance-subtitle {
    font-size: 24px;
    color: #0C253E;
    margin: 32px 0 12px;
    text-transform: uppercase;
    font-weight: lighter;
}

.insurance-list {
    list-style: disc inside;
    margin: 0 0 24px 0;
    padding: 0;
}

.insurance-list li {
    margin-bottom: 8px;
    color: #333;
    line-height: 1.3;
    font-size: 16px;

}

/* ==== Блок «Прeимущества + оформление» ==== */
.insurance-details {
    margin-top: 60px;
}


.insurance-side-image {
    display: block;
    width: 600px;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.insurance-details-right:hover .insurance-side-image {
    transform: scale(1.02);
}

.insurance-btn {
    display: inline-block;
    background-color: #D61F1F;
    color: #fff;
    padding: 12px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
    transition: background-color 0.2s, transform 0.2s;
}

.insurance-btn:hover {
    background-color: #b81b1b;
    transform: translateY(-2px);
}

/* CSS */

/* контейнер-окно */
.insurance-logos {
    overflow: hidden;
    /* опционально, высота/фон */
    padding: 20px 0;
    background: none;

    margin-top: 4rem;
}

/* «рельсы» для бегающей строки */
.logos-track {
    display: flex;
    /* делаем бесконечную прокрутку */
    animation: scroll-left 20s linear infinite;
}

/* сами логотипы */
.company-logo {
    flex: 0 0 auto;
    width: 120px;
    margin: 0 32px;
    /* для плавного hover */
    transition: transform 0.3s;
}

.company-logo:hover {
    transform: scale(1.1);
}

/* keyframes: сдвигаем всю полосу налево на ровно 50% её ширины */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* тех же 50%, что длина первой партии */
    }
}


.checkup-container {
    display: flex;
    gap: 40px;
    max-width: 100%;
    margin: 5rem auto;
    align-items: flex-start;

}

.checkup-text {
    flex: 1;
}

.checkup-text h2 {
    font-size: 36px;
    color: #0C253E;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: lighter;
}

.checkup-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color .2s ease;
}

.btn--red {
    background-color: #D61F1F;
    color: #fff;
}

.btn--red:hover {
    background-color: #b81b1b;
}

/* ======== слайдер ======== */
.checkup-slider-wrapper {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
}

.checkup-slider-track {
    display: flex;
    transition: transform .5s ease;
}

.checkup-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.checkup-slide img {
    display: block;
    width: 90%;
    height: auto;
    object-fit: cover;
}

/* стрелки */
.checkup-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(12, 37, 62, 0.8);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
}

.checkup-arrow:hover {
    background: rgba(12, 37, 62, 1);
    transform: translateY(-50%) scale(1.1);
}

.checkup-prev {
    left: 10px;
}

.checkup-next {
    right: 10px;
}


.promo-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.promo-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.promo-slider {
    position: relative;
    overflow: hidden;
}

.promo-track {
    display: flex;
    transition: transform .5s ease;
}

.promo-slide {
    flex: 0 0 25%;
    box-sizing: border-box;
    padding: 0 10px;
    text-align: center;
}

.promo-slide img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.promo-slide .caption {
    margin: 12px 0 8px;
    font-size: 14px;
}

.promo-slide .btn {
    display: inline-block;
    background-color: #D61F1F;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: background .2s;
}

.promo-slide .btn:hover {
    background-color: #b81b1b;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0C253E;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.slide-btn:hover {
    background: #091c2d;
}

.slide-btn.prev {
    left: 0;
}

.slide-btn.next {
    right: 0;
}


.resume-section {
    background-color: white;
    border-radius: 30px;
    margin: 40px auto;
    padding: 60px;
    max-width: 800px;
}

.resume-form h2 {
    font-size: 36px;
    color: #0C253E;
    margin-bottom: 10px;
}

.resume-form p {
    color: #555;
    margin-bottom: 30px;
}

.resume-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.resume-form input,
.resume-form select,
.resume-form textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
}

.resume-form .form-row {
    display: flex;
    gap: 20px;
}

.resume-form .form-row .half {
    flex: 1;
}

.resume-form button {
    background-color: #D61F1F;
    color: white;
    font-size: 16px;
    padding: 14px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 30%;
}

.resume-form button:hover {
    background-color: #b81b1b;
}

.resume-form label {
    font-size: 14px;
    margin-bottom: 4px;
    color: #0C253E;
}

.poly-top {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;

}

.poly-image {
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 12px;
    width: 500px;
    height: 500px;
}

.poly-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.poly-image:hover img {
    transform: scale(1.05);
}

.poly-play {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s;
}

.poly-play:hover {
    transform: scale(1.1);
}

.poly-play img {
    width: 20px;
    height: 20px;
}

.poly-content {
    flex: 1 1 400px;
}

.poly-subtitle {
    display: block;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.poly-title {
    font-size: 32px;
    color: #0C253E;
    margin-bottom: 20px;
}

.poly-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #333;
}

/* === Амбулаторные услуги === */
.ambulatory {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.amb-title {
    font-size: 28px;
    color: #0C253E;
}

.amb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Пилюли как button */
.pill {
    /* сброс дефолтных стилей кнопки */
    border: none;
    background: #fff;
    padding: 12px 24px;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-size: 15px;
    color: #333;
    text-align: center;
    cursor: pointer;
    transition: background-color .2s, transform .2s;
    flex: 1 1 calc(25% - 16px);
    max-width: calc(25% - 16px);
}

.pill:hover {
    background-color: rgba(0, 0, 0, 0.03);
    transform: translateY(-2px);
}


.amb-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.amb-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    transition: transform .3s ease, box-shadow .3s ease;
}

.amb-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}


.amb-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.amb-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    transition: transform .3s ease, box-shadow .3s ease;
}

.amb-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}


.blog-section {
    background-color: #FFFFFF; /* белый фон */ /* скруглённые углы по макету */
    border-radius: 15px 15px 0 0;
    margin: 40px 40px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.blog-container {

    margin: 0 auto;
}

.blog-title {
    font-size: 32px;
    color: #0C253E;
    margin-bottom: 24px;
}



.blog-card.empty {
    visibility: hidden;
}


.blog-meta {
    font-size: 14px;
    text-transform: uppercase;
    color: #666;
    margin: 12px 16px 4px;
}

.blog-headline {
    font-size: 20px;
    color: #0C253E;
    margin: 4px 16px 8px;
    line-height: 1.2;
}

.blog-desc {
    font-size: 15px;
    color: #333;
    margin: 0 16px 16px;
    line-height: 1.4;
    flex-grow: 1;
}


.blog-detail-section {
    background-color: #FFFFFF; /* белый фон */ /* скруглённые углы по макету */
    border-radius: 15px 15px 0 0;
    margin: 40px 40px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}


.blog-detail-container {
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 32px;
    position: relative;
}

.blog-detail-img {
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 28px;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.07);
}

.blog-meta {
    font-size: 1rem;
    color: #1283C6;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch; /* Важно! */
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;       /* Сделать карточку всегда на всю высоту ячейки */
    min-height: 420px;  /* Можешь менять под свой вкус */
    max-height: 600px;  /* Ограничение чтобы не вытягивались слишком длинные */
}

.blog-img {
    width: 100%;
    aspect-ratio: 16 / 9;      /* Чтобы картинки были одной высоты */
    object-fit: cover;
    display: block;
}

.blog-headline {
    flex-shrink: 0;
    min-height: 66px;  /* Одинаковая высота заголовка, меняй под свой дизайн */
}

.blog-desc {
    flex-grow: 1;      /* Оставшийся текст занимает всё свободное место */
    margin-bottom: 16px;
    min-height: 38px;  /* Минимум строк для описания (чтобы не прыгало) */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Сколько строк максимум показывать (2–3 для красоты) */
    -webkit-box-orient: vertical;
}


.blog-body {
    font-size: 1.13rem;
    line-height: 1.7;
    color: #263238;
    margin-top: 8px;
}

.blog-body h2,
.blog-body h3,
.blog-body h4 {
    color: #1283C6;
    margin-top: 1.7em;
    margin-bottom: .6em;
}

.blog-body ul, .blog-body ol {
    margin: 1em 0 1em 1.2em;
}


.pagination {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: center;
}

.pagination a {
    padding: 6px 16px;
    border-radius: 24px;
    background: #f2f7fa;
    color: #0C253E;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s;
}

.pagination a:hover {
    background: #0096e6;
    color: #fff;
}

.page-num {
    color: #0C253E;
    font-weight: 700;
}

.international-container p {
    font-size: 1.15rem;
    color: #21344a;
    margin-bottom: 1.2em;

}

.text-big {
    font-size: 1.19rem;
}

.media-image {
    display: block;
    width: 100%;
    object-fit: cover;
}

.checkup-section {
    background-color: #FFFFFF;
    border-radius: 15px 15px 0 0;
    margin: 40px 40px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.mri-container {
    display: flex;
    align-items: stretch;


}

.mri-image-wrap {
    flex: 0 0 600px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mri-image {
    max-width: 530px;
    width: 100%;
    border-radius: 12px;
    display: block;
}

.mri-text-wrap {
    flex: 1;

    background: #fff;
    border-radius: 0 24px 24px 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.mri-tagline {
    color: #4972a0;
    font-size: 18px;
    margin-bottom: 12px;
    font-family: 'Inter', Arial, sans-serif;
    display: block;
}

.mri-heading {
    font-size: 48px;
    margin: 0 0 24px 0;
    color: #15304b;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.15;
}

.mri-text-wrap p {
    font-size: 20px;
    color: #132c3d;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
}


@media (min-width: 1261px) and (max-width: 1720px) {
    .nav-list {
        gap: 16px;
    }

    .nav-link {
        font-size: 17px;
        padding: 6px 0;

    }

    .btn-results {
        padding: 6px 14px;
        font-size: 14px;
    }

    .lang-btn {
        padding: 4px 8px;
        font-size: 14px;
    }

    .menu {
        padding: 0 5px;
    }

    .logo-img {
        height: 32px;
    }
}


@media (max-width: 1370px) {
    .about-container {
        flex-direction: column;
        gap: 20px;
    }

    .about-left, .about-right {
        max-width: 100%;
        width: 100%;
    }

    .clinic-image {
        width: 100%;
        height: auto;
    }

    .director-card {
        width: 40%;
    }

    .pill-btn {
        background-color: rgba(12, 37, 62, 0.8); /* тёмно-синий с прозрачностью */
        color: #FFFFFF;
        border: 1px solid #FFFFFF;
        border-radius: 20px;
        padding: 12px 16px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 14px;
        cursor: pointer;
        width: 100%;
        height: 85%;
        transition: background-color 0.2s, transform 0.2s;

    }

    .about-us-video {
        display: flex;
        justify-content: center;
        margin: 3rem 0;
    }

    .about-us-video img {
        width: 98%;
        height: 70%;
    }

    .director-message-container {
        padding: 0;
        width: 98%;
        margin: 2rem 0;
    }

    .director-message-container h3, p {
        font-size: 90%;
    }

    .team-and-certificates-container {
        margin: 3rem 0;
    }

}


@media (min-width: 100px) and (max-width: 1410px) {
    .lang-switch {
        display: none;
    }

    .lang-dropdown {
        display: block;
        position: relative;
    }

    .lang-flag-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    .lang-flag-btn img {
        width: 24px;
        height: 24px;
        border-radius: 50%;
    }

    .lang-menu {
        position: absolute;
        right: 0;
        top: 36px;
        background: white;
        border: 1px solid #ccc;
        list-style: none;
        padding: 5px 0;
        display: none;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .lang-menu li {
        padding: 6px 16px;
    }

    .lang-menu li a {
        text-decoration: none;
        color: #333;
        font-size: 14px;
    }

    .lang-dropdown.open .lang-menu {
        display: block;
    }

    .lang-menu img {
        width: 24px;
        height: 24px;
        display: inline-block;
        border-radius: 50%;
        margin-right: 8px;
    }

}

@media (max-width: 1300px) {
    .nav-list {
        gap: 16px;
    }

    .btn-results {
        padding: 6px 12px;
        font-size: 14px;
    }

    .lang-switch {
        margin-right: 10px;
    }
}


@media (max-width: 1260px) {
    .nav-list {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .menu {
        justify-content: space-between;
        padding: 10px 15px;
    }

    .logo {
        margin-left: 0;
    }


}

@media (max-width: 1190px) {
    .director-message-container {
        flex-direction: column;

    }

    .director-photo-wrapper {
        max-width: 100%;
        width: 100%;

    }

    .director-photo-img {
        width: 100%;
    }

    .team-and-certificates-container {
        flex-direction: column-reverse; /* Сначала сертификат, потом текст */
        gap: 24px;
        padding: 0 10px;

    }

    .team-text-wrapper {
        max-width: 100%;
        margin: 1rem 0;
    }

    .reviews-container {
        max-width: 100%;

    }

    .reviews-right {
        display: none;
    }

    .l-d-section {

    }

    .l-d-container {
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 32px;
        justify-content: center;
    }

    .l-d-image {
        width: 100%; /* по 3 в строке, если ширина позволяет */

        box-sizing: border-box;
    }

    .l-d-title {
        font-size: 3rem;
    }

}


@media (max-width: 991px) {
    .nav-list {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .menu {
        justify-content: space-between;
        padding: 10px 15px;
    }

    .logo {
        margin-left: 0;
    }
}


@media (max-width: 890px) {
    .l-d-container {
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 32px;
        justify-content: space-around;
        margin: 0;
    }

    .l-d-image {
        width: 100%; /* по 3 в строке, если ширина позволяет */

        box-sizing: border-box;
    }

    .l-d-title {
        font-size: 3rem;
    }
}





.doctor-detail-section {
    background-color: #FFFFFF;
    border-radius: 15px 15px 0 0;
    margin: 40px 40px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.doctor-detail-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;

}

.doctor-detail-img {
    max-width: 100%;
    border-radius: 10px;
    object-fit: cover;
}


.timeline-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #f8f8f7;
    padding: 32px 0 24px 0;
    border-radius: 20px;
}

.timeline-arrow {
    width: 44px;
    height: 44px;
    background: #eceff3;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    color: #223043;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s;
    margin: 0 16px;
    flex-shrink: 0;
}

.timeline-arrow:active, .timeline-arrow:hover {
    background: #d1d8e0;
}

.timeline-scroll {
    overflow-x: auto;
    flex: 1;
    min-width: 0;
    /* scroll-behavior: smooth; */ /* Для ручного скролла мышкой */
}

.timeline-scroll::-webkit-scrollbar {
    display: none;
}

.timeline-years {
    display: flex;
    align-items: center;
    min-width: max-content;
    gap: 0;
    justify-content: center;
}

.timeline-year {
    border: none;
    background: #edf1f5;
    color: #223043;
    font-size: 26px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    border-radius: 32px;
    padding: 16px 46px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    margin: 0 12px;
}

.timeline-year.active {
    background: #7b8c9e;
    color: #fff;
}

.timeline-dash {
    display: inline-block;
    width: 120px;
    height: 2px;
    border-bottom: 2px dashed #7b8c9e;
    margin: 0 0px;
    vertical-align: middle;
}

.timeline-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 24px 16px 0 16px;


}

.timeline-block {
    display: none;
    flex-direction: column;
    gap: 22px;
    animation: fadein .4s;
}

.timeline-block[style*="display:block"] {
    display: flex;
}

.timeline-main {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

.timeline-main img {
    width: 380px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(30, 50, 60, 0.10);
    background: #fff;
}

.timeline-text {
    max-width: 650px;
    margin-left: 16px;
}

.timeline-text h3 {
    font-size: 36px;
    margin-bottom: 14px;
}

.timeline-gallery {
    display: flex;
    gap: 16px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.timeline-gallery img {
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(10, 30, 40, 0.06);
    background: #fff;
}

/* Адаптив */
@media (max-width: 1000px) {
    .timeline-main {
        flex-direction: column;
        align-items: stretch;
    }

    .timeline-main img {
        width: 100%;
        max-width: 100%;
    }

    .timeline-gallery img {
        width: 48%;
    }
}

@media (max-width: 700px) {
    .timeline-year {
        font-size: 15px;
        padding: 10px 16px;
        margin: 0 3px;
    }

    .timeline-dash {
        width: 30px;
    }

    .timeline-wrapper {
        padding: 16px 0 10px 0;
    }

    .timeline-arrow {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }

    .timeline-content {
        padding: 10px 2vw 0 2vw;
    }

    .timeline-gallery img {
        width: 100%;
    }

    .timeline-text h3 {
        font-size: 22px;
    }
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}


.about-amuh {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
    margin: 0 auto 64px auto;
    gap: 64px;
}

.about-amuh-text {

    font-size: 20px;
    line-height: 1.36;
    margin-top: 30px;
}

.about-amuh-img-wrap {
    flex: 0 0 600px;
    max-width: 600px;
}

.about-amuh-img-wrap img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 2px 24px rgba(10, 30, 60, 0.11);
    background: #fff;
}

@media (max-width: 1200px) {
    .about-amuh-flex {
        flex-direction: column;
        gap: 32px;
    }

    .about-amuh-img-wrap {
        max-width: 100%;
    }

    .about-amuh-text {
        font-size: 19px;
        margin-top: 0;
    }
}

.about-amuh-photos {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 в ряд на большом экране */
    gap: 32px;
    max-width: 1600px;
    margin: 40px auto;
    padding: 0 1vw;
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(20, 30, 40, 0.10);
    background: #fff;
    transition: box-shadow .15s;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .23s cubic-bezier(.4, 1, .4, 1);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover {
    box-shadow: 0 8px 36px rgba(15, 45, 70, 0.17);
}

/* Адаптив */
@media (max-width: 1350px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1050px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-item {
        border-radius: 8px;
    }
}


.vacancies-section {
    background-color: white;
    border-radius: 20px 20px 0 0;
    margin: 40px;
    padding: 60px;

    /* или с шаблонным тегом, если вставляешь CSS прямо в шаблон: */

    background-size: cover;
    background-position: center;
}

.vacancies-header h1 {
    font-size: 40px;
    color: #0C253E;
    text-transform: uppercase;
}

.vacancies-header p {
    font-size: 18px;
    color: #0C253E;
    margin-top: 10px;
}

.vacancy-filter {
    margin-top: 20px;
    margin-bottom: 40px;
}

.vacancy-filter select {
    padding: 10px 16px;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid #ccc;
}

.vacancy-card {
    background: #fff;
    border: 1.5px solid #e5eaf1;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(18, 131, 198, 0.07);
    margin-bottom: 26px;
    padding: 24px 18px 22px 18px;
    transition: box-shadow 0.18s;
}
.vacancy-card:hover {
    box-shadow: 0 8px 36px rgba(18, 131, 198, 0.13);
    border-color: #1283c640;
}
.vacancy-number {
    font-size: 15px;
    font-weight: 700;
    color: #1283C6;
    margin-bottom: 2px;
}
.vacancy-title {
    font-size: 19px;
    font-weight: 700;
    color: #0C253E;
    margin-bottom: 7px;
}
.salary-label {
    font-size: 13px;
    color: #6f7890;
    margin-bottom: 2px;
}
.salary-value {
    font-size: 17px;
    color: #0C253E;
    font-weight: 700;
}


.vacancy-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px; /* Можно подбирать, чтобы не слипалось */
}

.vacancy-top-left,
.vacancy-top-middle {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.vacancy-top-middle {
    min-width: 220px; /* Ширина блока с зарплатой — подбери под свой макет */
    align-items: center;
}

.vacancy-top-right {
    display: flex;
    align-items: center;
    gap: 18px; /* Между кнопками */
}

.vacancy-number {
    font-size: 28px;
    font-weight: bold;
}

.vacancy-title {
    font-size: 18px;
    font-weight: 600;
}

.salary-label {
    font-size: 14px;
}

.salary-value {
    font-weight: bold;
    font-size: 18px;
}

.apply-btn {
    background-color: #0C253E;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.vacancy-details {
    margin-top: 20px;
    display: flex;
    gap: 40px;
}

.vacancy-column {
    flex: 1;
}

.vacancy-column h4 {
    margin-bottom: 8px;
}

.toggle-details-btn {
    background: #0C253E;
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 10px 22px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-left: 12px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(12, 37, 62, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.toggle-details-btn:hover, .toggle-details-btn:focus {
    background: #143d67;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(12, 37, 62, 0.14);
}

.toggle-details-btn .arrow {
    font-size: 18px;
    transition: transform 0.25s;
}

/* Когда кнопка активна — стрелка вверх */
.toggle-details-btn.active .arrow {
    transform: rotate(180deg);
}

.resume-form-container {
    justify-content: center;
    display: flex;
    align-items: center;
}


.resume-title {
    font-size: 2.5rem;
    text-align: center;
    color: #123;
    font-weight: 700;
    margin-bottom: 0.7rem;
    letter-spacing: .03em;
}

.resume-img {
    max-width: 90%;
    border-radius: 15px;
}

.resume-desc {
    text-align: center;
    color: #4A4A4A;
    margin-bottom: 1.5rem;
    font-size: 1.13rem;
}

.resume-form input,
.resume-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border-radius: 10px;
    border: 1px solid #d2d2d2;
    background: #f6f7fa;
    font-size: 1.1rem;
    color: #1d2c38;
    transition: border .2s;
}

.resume-form input:focus,
.resume-form textarea:focus {
    border-color: #1283C6;
    outline: none;
    background: #fff;
}

.resume-form-row {
    display: flex;
    gap: 18px;
    margin-bottom: 16px;
}

.resume-form-row input {
    margin-bottom: 0;
}

.file-upload-wrapper {
    flex: 1;
    background: #f1f5f9;
    border: 2px dashed #b0b9c7;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    position: relative;
    transition: border-color 0.25s, background 0.2s;
    cursor: pointer;
    margin-bottom: 0;
}

.file-upload-wrapper.dragover {
    border-color: #1283C6;
    background: #eaf7fd;
}

.file-upload-label {
    width: 100%;
    height: 100%;
    text-align: center;
    cursor: pointer;
    color: #454f5b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.file-upload-icon {
    font-size: 2.1rem;
    margin-bottom: 8px;
    color: #1283C6;
}

.file-uploaded-list {
    flex: 1;
    background: #f7f7fa;
    border: 2px dashed #e2e5ea;
    border-radius: 13px;
    min-height: 110px;
    margin-left: 14px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: #9299ad;
    font-size: 1.01rem;
}

.resume-form textarea {
    resize: vertical;
    min-height: 68px;
}

.resume-btn {
    width: 60%;
    margin: 18px auto 0 auto;
    display: block;
    background: linear-gradient(90deg, #1283C6 0, #0C253E 100%);
    color: #fff;
    font-size: 1.2rem;
    padding: 14px 0;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 16px rgba(18, 131, 198, 0.09);
    transition: background .2s, transform .2s;
}

.resume-btn:hover {
    background: linear-gradient(90deg, #0C253E 0, #1283C6 100%);
    transform: translateY(-2px) scale(1.03);
}

@media (max-width: 600px) {
    .resume-form-container {
        padding: 18px 5px 22px 5px;
    }

    .resume-title {
        font-size: 2rem;
    }

    .resume-form-row {
        flex-direction: column;
        gap: 0;
    }

    .file-uploaded-list {
        margin-left: 0;
        margin-top: 8px;
        min-height: 60px;
    }

    .resume-btn {
        width: 100%;
    }
}

.resume-form-container {

}


.contact-section {
    background: linear-gradient(135deg, #f8fafc 70%, #e6eefd 100%);
    padding: 54px 0 80px 0;
    font-family: 'Inter', Arial, sans-serif;

}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;

}

.contact-info {
    flex: 1 1 340px;
    background: #fff;
    border-radius: 18px;
    padding: 36px 34px 30px 34px;
    box-shadow: 0 6px 32px rgba(70, 80, 120, 0.09);
    min-width: 290px;
}

.contact-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #163a64;
    letter-spacing: 0.5px;
}

.contact-desc {
    font-size: 17px;
    color: #53627a;
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    font-size: 17px;
    color: #193b63;
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-label {
    font-weight: 600;
    color: #163a64;
    margin-right: 6px;
}

.contact-list a {
    color: #215cbc;
    text-decoration: none;
    transition: color .16s;
    font-weight: 500;
}

.contact-list a:hover {
    color: #df232b;
}

.contact-dot {
    color: #aaa;
    margin: 0 8px;
    font-size: 20px;
    vertical-align: middle;
}

.contact-form {
    flex: 1 1 350px;
    background: #fff;
    border-radius: 18px;
    padding: 36px 34px 30px 34px;
    box-shadow: 0 6px 32px rgba(70, 80, 120, 0.09);
    min-width: 300px;
    max-width: 460px;
    display: flex;
    flex-direction: column;
}

.contact-section {
    background-color: #FFFFFF;
    border-radius: 15px 15px 0 0;
    margin: 40px 40px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

iframe {

    padding: 2rem;
    margin-left: 70px;
}

@media (min-width: 300px) and (max-width: 760px) {

    .scroll-to-top {
        left: 30px;
    }
    .doctor-profile-outer {

        max-width: 100%;


    }


     .doctors-grid {
        grid-template-columns: 1fr; /* 1 в ряд — только сверху вниз! */
        margin: 0 0.5rem 2.5rem 0.5rem;
        gap: 22px 0;
    }
    .doctor-card-v2 {
        padding: 24px 7px 22px 7px;
        border-radius: 18px;
    }
    .doctor-avatar-wrapper {
        width: 145px;
        height: 145px;
        margin-bottom: 18px;
    }
    .doctor-card-name {
        font-size: 1.05rem;
    }
    .doctor-card-pos {
        font-size: 0.95rem;
    }
    main {
    padding-top: 100px;
    }

    .about-us-title h1 {
        font-size: 50px;
        margin: 20px 20px;
    }

    .abt-p {
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        width: 100%;
        max-width: 100%;
        display: block;

    }

    .about-us-title p {
        font-size: 14px;
        line-height: 1.4;
        white-space: normal !important;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        display: block;
        margin: 20px 20px;
    }

    .footer-about-us {
        padding: 0;
        display: flex;
        justify-content: center;
    }

    .l-d-title {
        padding: 0;
        margin: 0 0 10px;
        font-size: 30px;
        color: #0C253E;
        text-align: center;
    }

    .contact-us-section {
        padding-top: 20px;
    }

    .about-amuh {
        display: flex;
        flex-direction: column-reverse;
    }

    .about-amuh-img-wrap {
        margin-top: 1rem;
        max-height: 352px;
    }

    .about-amuh p {
        padding: 0;
    }

    .about-amuh-photos {
        display: flex;
        flex-direction: column;
    }

    .international-section, .insurance-section, .checkup-section, .blog-detail-section, .blog-section {
        padding: 2rem 0;
        margin: 10px 10px;

    }

    .international-text, .international-text p {
        margin-top: 1rem;
        max-width: 420px;
    }

    .international-container {
        display: flex;
        flex-direction: column-reverse;
        margin: 0 10px;
        gap: 20px;


    }

    .insurance-container, .checkup-container, .mri-container {
        display: flex;
        flex-direction: column;
        margin: 0 10px;
        gap: 20px;
    }

    .international-media {
        width: 100%;
        justify-content: center;
    }

    .media-wrapper {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    .media-wrapper img, .mri-image-wrap,
    .media-image, .checkup-slide img {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        display: block;
        border-radius: 15px;
        margin-bottom: 20px;

    }

    .play-button {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .insurance-main-image, .insurance-side-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        margin: 0;
        padding: 0;

    }

    .insurance-title {
        font-size: 28px;
    }

    .gallery-item {
        box-shadow: none;

    }

    .gallery-item img {
        display: flex;
        padding: 1rem;
    }

    .international-text {

        margin: 1rem;
    }

    .l-d-section, .d-section {
        margin-top: 10px;
    }
    .doctors-grid {
  display: flex;


}


    .blog-container {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        padding: 0 10px;
    }

    .blog-title {
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 10px;
        color: #0C253E;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .blog-grid {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .blog-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
        margin: 16px 0;
        padding: 0 0 16px 0;
        overflow: hidden;
    }

    .blog-img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
        border-radius: 16px 16px 0 0;
    }

    .blog-meta {
        color: #8d99ae;
        font-size: 13px;
        margin: 12px 16px 0 16px;
    }

    .blog-headline {
        font-size: 18px;
        font-weight: 700;
        margin: 8px 16px 0 16px;
        color: #1a2343;
        line-height: 1.2;
    }

    .blog-desc {
        color: #485068;
        font-size: 15px;
        margin: 8px 16px 0 16px;
        line-height: 1.4;
        min-height: 40px; /* для одинаковой высоты, если надо */
    }
    .mobile-lang-switch {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 18px 0 18px 0;
}
    .mobile-lang-switch .lang-btn {
        background: #f5f5f7;
        color: #011d2c;
        border: none;
        border-radius: 7px;
        padding: 6px 14px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.18s;
    }
    .mobile-lang-switch .lang-btn.active,
    .mobile-lang-switch .lang-btn:hover {
        background: #011d2c;
        color: #fff;
    }




    .doctor-detail-section {
    margin: 12px 10px;
    padding: 8px 4px 20px 4px;
    border-radius: 20px;
  }

  .doctor-detail-container {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 0;
  }

  .doctor-detail-img {
    width: 100%;
    max-width: 330px;
    aspect-ratio: 1/1.08;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(50,80,110,0.10);
    margin: 0 auto 10px auto;
    display: block;
  }

  .body-doctors {
    width: 100%;
    text-align: left;
    padding: 0 8px;
  }

  .doctor-headline {
    font-size: 1.15rem;
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .doctor-position {
    font-size: 0.98rem;
    color: #8197A8;
    margin-bottom: 8px;
  }

  .doctor-bio {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #223043;
    margin-top: 6px;
  }
  .contact-section {
        margin: 10px 10px 30px;
        padding: 18px 3vw 24px 3vw;
        border-radius: 16px 16px 0 0;
    }

    .contact-container {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }

    .contact-info {
        padding: 18px 10px 18px 10px;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(100,130,180,0.06);
        min-width: unset;
        max-width: 100%;
        margin: 0 auto 16px auto;
        background: #fff;
    }

    .contact-title {
        font-size: 1.45rem;
        text-align: left;
        margin-bottom: 10px;
    }

    .contact-desc {
        font-size: 1.04rem;
        margin-bottom: 14px;
    }

    .contact-list li {
        font-size: 1rem;
        margin-bottom: 10px;
        line-height: 1.5;
        display: block;
    }
    .contact-label {
        font-size: 1rem;
        font-weight: 600;
    }

    .map {
        width: 100% !important;
        height: 270px !important;
        min-height: 180px !important;
        border-radius: 14px;
        margin: 0 auto 0 auto;
        overflow: hidden;
    }

    .map iframe {
        width: 100% !important;
        min-width: 100% !important;
        height: 100% !important;
        min-height: 180px !important;
        border-radius: 14px;
        margin: 0;
        padding: 0;
        display: block;
    }

    .apply-btn, .toggle-details-btn {
        width: 100%;
        margin: 6px 0 0 0;
        border-radius: 14px;
        font-size: 15px;
        padding: 12px 0;
        display: flex;
        justify-content: center;
    }
    .vacancy-top-right {
        flex-direction: column;
        gap: 0;
    }
    .resume-btn, .resume-form button {
    background: linear-gradient(90deg, #1283C6 0%, #0C253E 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 0;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    margin-top: 24px;
    box-shadow: 0 2px 12px rgba(18,131,198,0.10);
}
.resume-btn:hover, .resume-form button:hover {
    background: linear-gradient(90deg, #0C253E 0%, #1283C6 100%);
}

.apply-btn:hover, .toggle-details-btn:hover {
    background: linear-gradient(90deg, #0C253E 0%, #1283C6 100%);
    box-shadow: 0 4px 18px rgba(18, 131, 198, 0.16);
    transform: translateY(-2px) scale(1.03);
}
.vacancy-top-right {
    display: flex;
    gap: 10px;
    width: 100%;
}

}


@media (min-width: 700px) {
    .gallery-photos {
        display: grid;
        grid-template-columns: repeat(4, minmax(200px, 1fr)); /* Колонки */
        grid-auto-rows: auto; /* Высота строк автоматически */
        gap: 16px; /* Отступы между элементами */
        max-width: 100%;

    }

    .gallery-item {
        width: 100%;
        overflow: hidden;
        border-radius: 8px;
    }

    .gallery-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

}

.landing-role-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 75vh;
    background: linear-gradient(120deg, #8197A8 0%, #fff 100%);
    border-radius: 15px;
    margin: 40px 40px;
    padding: 10px 20px;



}


.role-select-block h1 {
    font-size: 3rem;
    color: #0C253E;
    margin-bottom: 20px;
    font-weight: 700;
}

.role-select-block p {
    color: #8197A8;
    font-size: 20px;
    margin-bottom: 30px;
}

.role-buttons {
    display: flex;
    gap: 48px;
    justify-content: center;
}

.role-btn {
    border: none;
    background: linear-gradient(90deg, #0C253E 0%, #1283C6 100%);
    color: #fff;
    font-size: 20px;
    border-radius: 16px;
    padding: 38px 50px;
    box-shadow: 0 4px 18px rgba(18, 131, 198, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.18s, transform 0.18s;
}

.role-btn img {
    width: 68px;
    height: 68px;
    margin-bottom: 8px;
}

.role-btn:hover {
    background: linear-gradient(90deg, #1283C6 0%, #0C253E 100%);
    transform: scale(1.04);
}

.role-menu {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(12, 37, 62, 0.12);
    padding: 48px 36px;
    text-align: center;
    min-width: 320px;
    margin-top: 40px;
    animation: fadeIn 0.3s;
     margin-bottom: 48px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.97);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.role-menu h2 {
    color: #0C253E;
    margin-bottom: 22px;
    font-size: 2.2rem;
    font-weight: 600;
}

.role-menu ul {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

.role-menu li {
    margin: 8px 0;
}

.role-menu a {
    color: #1283C6;
    font-size: 1.25rem;
    text-decoration: none;
    font-weight: 500;
    padding: 14px 26px;
    border-radius: 12px;
    transition: background .14s, color .14s;
    display: inline-block;
}

.role-menu a:hover {
    background: #f3f7fa;
    color: #0C253E;
}

.back-btn {
    margin-top: 12px;
    background: none;
    border: 1.8px solid #8197A8;
    color: #0C253E;
    border-radius: 16px;
    font-size: 1rem;
    padding: 12px 40px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.13s, color 0.13s;
}

.back-btn:hover {
    background: #8197A8;
    color: #fff;
}

/* Mobile adaptive */
@media (max-width: 700px) {
    .role-select-block, .role-menu {
        padding: 24px 10px;
        min-width: unset;

    }
    .landing-role-container {
        padding: 0;
        margin: 10px 10px;
    }

    .role-buttons {
        flex-direction: column;
        gap: 24px;
    }

    .role-btn {
        font-size: 1.13rem;
        padding: 22px 10px;
    }

    .role-btn img {
        width: 48px;
        height: 48px;
    }

    .vacancies-section {
    padding: 12px;
    margin: 10px 10px;
  }
  .vacancies-header h1 {
    font-size: 22px;
    margin-bottom: 6px;
    text-align: left;
  }
  .vacancies-header p {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: left;
  }
  .vacancy-card {
    border-radius: 16px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.06);
    padding: 16px 10px;
    background: #fff;
  }
  .vacancy-top {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .vacancy-number {
    font-size: 15px;
  }
  .vacancy-title {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 4px;
  }
  .salary-label, .salary-value {
    font-size: 13px;
    margin-bottom: 2px;
  }
  .apply-btn, .toggle-details-btn {
    font-size: 14px;
    width: 100%;
    margin-top: 6px;
    margin-right: 0;
    border-radius: 14px;
    padding: 10px 0;
  }
  .vacancy-details {
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
  }

  /* Фильтр */
  .vacancy-filter select {
    width: 100%;
    font-size: 15px;
    margin-bottom: 16px;
    padding: 9px 10px;
  }

  /* Резюме форма */
  .resume-form-container {
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 20px 0 30px 0;
  }
  .left-resume {
    display: none;
  }
  .right-resume {
    width: 100%;
    padding: 0 8px;
  }
  .resume-title {
    font-size: 24px;
    text-align: left;
    margin-bottom: 10px;
  }
  .resume-desc {
    font-size: 14px;
    margin-bottom: 16px;
    text-align: left;
  }
  .resume-form input,
  .resume-form textarea {
    font-size: 15px;
    padding: 12px 10px;
  }
  .resume-form-row {
    flex-direction: column;
    gap: 10px;
  }
  .resume-btn {
    width: 100%;
    font-size: 15px;
    padding: 14px 0;
    margin-top: 10px;
    border-radius: 14px;
  }
  .file-upload-wrapper {
    width: 100%;
  }
  .file-uploaded-list {
    font-size: 13px;
    padding-left: 2px;
  }


}

.role-menu ul {
    list-style: none;
    padding: 0;
    margin: 32px auto;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.role-menu ul li a, .role-menu .btn-results {
    background: linear-gradient(90deg, #1283C6 0, #0C253E 100%);
    color: #fff;
    display: block;
    padding: 18px 26px;
    font-size: 18px;
    border-radius: 20px;
    text-decoration: none;
    transition: background .18s, transform .13s;
    box-shadow: 0 2px 12px rgba(18, 131, 198, 0.07);
    text-align: center;
    font-weight: 600;
}

.role-menu ul li a:hover, .role-menu .btn-results:hover {
    background: linear-gradient(90deg, #0C253E 0, #1283C6 100%);
    transform: translateY(-2px) scale(1.03);
}

.role-menu .back-btn {
    margin: 32px auto 0 auto;
    background: #f5f6fa;
    color: #123;
    border-radius: 18px;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 1px 6px rgba(10, 30, 40, 0.09);
    cursor: pointer;
    display: block;
}

.role-menu .back-btn:hover {
    background: #e9eef4;
}


.all-departments {

}

.departments-section {
    border-radius: 15px;
       background: white;
    margin: 40px 40px;
    padding: 60px 20px;


}
.departments-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 52px;
    color: #112345;
    letter-spacing: 0.01em;
}
.wide-stacked-cards {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.wide-card {
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
    min-height: 120px;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 12px 36px rgba(34, 52, 94, 0.10);
    margin-top: -46px; /* Ступенька: каждую ниже немного задвигаем */
    padding: 38px 44px 38px 38px;
    text-decoration: none;
    transition: transform 0.18s cubic-bezier(.22,1,.36,1), box-shadow 0.18s;
    position: relative;
    z-index: 1;
    opacity: 0;
    pointer-events: all;
}
.wide-card:first-child { margin-top: 0; }
.wide-card:hover, .wide-card:focus {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 60px rgba(30, 74, 163, 0.18);
}
.wide-card-img {
    width: 88px;
    height: 88px;
    border-radius: 18px;
    object-fit: cover;
    background: #e6ecf4;
    box-shadow: 0 4px 16px rgba(44,84,153,.04);
    flex-shrink: 0;
}
.wide-card-title {
    font-size: 1.48rem;
    font-weight: 700;
    color: #17395d;
    letter-spacing: 0.01em;
}

@media (max-width: 900px) {
    .departments-section { max-width: 99vw; padding: 0 7px; }
    .wide-card { padding: 18px 10px 18px 10px; min-height: 80px; gap: 16px; border-radius: 18px; }
    .wide-card-img { width: 48px; height: 48px; border-radius: 8px; }
    .wide-card-title { font-size: 1.04rem; }
}

/* Эффект появления по скроллу: */
.wide-card { opacity: 0; }
.wide-card.visible { opacity: 1; }
.vacancy-details {
    background: #f9fbfd;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(44, 101, 144, 0.08);
    padding: 24px 18px 18px 18px;
    margin-top: 16px;
    font-size: 16px;
    color: #222;
    border: 1.5px solid #dbe8f5;
}

.vacancy-details h4,
.vacancy-details h5 {
    margin-top: 18px;
    margin-bottom: 8px;
    color: #035db7;
    font-weight: 600;
    letter-spacing: .01em;
    font-size: 18px;
}

.vacancy-details ul {
    padding-left: 20px;
    margin: 10px 0 14px 0;
}

.vacancy-details li {
    margin-bottom: 7px;
    line-height: 1.5;
}

.vacancy-details strong, .vacancy-details b {
    color: #0b225c;
    font-weight: 600;
}

.vacancy-details p {
    margin-bottom: 8px;
    line-height: 1.55;
}


.scroll-to-top {
    position: fixed;
    right: 36px;
    bottom: 38px;
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    background: transparent;
    z-index: 2000;
    box-shadow: 0 8px 32px rgba(40, 99, 183, 0.25), 0 2px 8px rgba(0,0,0,0.05);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s, transform 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.scroll-to-top:hover {
    transform: scale(1.07) translateY(-3px);
}




main {
    padding-top: 40px;
}


.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 18px; /* поуже промежуток */
    margin: 32px 0 40px 0;
}

.doctor-card-v2 {
    max-width: 500px;     /* уже карточка */
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.09);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 18px 28px 18px;
    min-height: 430px;
    height: 100%;
}



.doctor-card-v2:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 40px 0 rgba(0,0,0,0.15);
}

.doctor-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.doctor-avatar-wrapper {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 24px;
    border: 4px solid #f0f4ff;
    background: #f9fafd;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
}


.doctor-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
     object-position: center 1%;
}

.doctor-card-name {
    font-size: 1.28rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-align: center;
    color: #25365c;
    line-height: 1.22;
}

.doctor-card-pos {
    font-size: 1.08rem;
    color: #5266a3;
    text-align: center;
    margin-bottom: 14px;
    font-weight: 500;
}

.doctor-card-extra {
    font-size: 0.98rem;
    color: #7d859a;
    text-align: center;
    margin-top: 16px;
    min-height: 38px;
    line-height: 1.3;
}


/* Дополнительно для экранов < 1400px/1200px еще меньше */
@media (max-width: 1400px) {
    .doctor-avatar-wrapper {
        width: clamp(300px, 26vw, 150px);
        height: clamp(300px, 26vw, 150px);
    }
}

@media (max-width: 1100px) {
    .doctor-avatar-wrapper {
        width: clamp(285px, 32vw, 120px);
        height: clamp(300px, 32vw, 120px);
    }
}

@media (max-width: 1100px) {
    p {
        font-size: 16px;
    }
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr); /* планшет */
    }

}

@media (max-width: 700px) {
    p {
        font-size: 15px;
    }
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    .doctor-card-v2 {
        max-width: 95vw;

    }
    .doctor-avatar-wrapper {
        width: 310px;
        height: 310px;
    }
    main {
        margin-top: 40px;
    }
}

.doctor-profile-outer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  min-height: 100vh;
  padding: 48px 0 36px 0;
        margin: 20px 40px;
    border-radius: 15px;
}

.doctor-profile-card {
  display: flex;
  background: #fff;
  border-radius: 30px;

min-height: 100vh;
  padding: 48px 48px;
  width: 100%;
  gap: 44px;
  align-items: center;
  transition: box-shadow 0.25s;
  position: relative;
}



.doctor-profile-img-block {
  flex-shrink: 0;
  background: linear-gradient(130deg, #f0f4ff 70%, #e5ebf7 100%);
  border-radius: 50%;
  padding: 7px;
  box-shadow: 0 4px 24px 0 rgba(30,90,180,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-profile-img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 50%;
  box-shadow: 0 0 0 8px #f4f7ff;
  transition: box-shadow 0.3s;
  background: #eaf1fa;
}

.doctor-profile-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doctor-profile-name {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #213a5d;
  letter-spacing: 0.01em;
}

.doctor-profile-position {
  font-size: 1.32rem;
  font-weight: 500;
  color: #3b68b6;
  margin-bottom: 24px;
}

.doctor-profile-bio.ck-content-doctor {
  font-size: 1.09rem;
  color: #3b4659;
  line-height: 1.65;
  background: #f6faff;
  border-radius: 16px;
  padding: 20px 22px 18px 22px;
  margin-top: 10px;
  margin-bottom: 0;
  box-shadow: 0 2px 10px 0 rgba(68,104,164,0.04);
  min-height: 80px;
}

/* --- Адаптив --- */
@media (max-width: 1000px) {
  .doctor-profile-card {
    flex-direction: column;
    align-items: center;
    padding: 24px 8px;
    gap: 18px;
  }
  .doctor-profile-img {
    width: 180px;
    height: 180px;
  }
}


.doctor-profile-img-block {
  position: relative;
  background: radial-gradient(ellipse at center, #eaf3fd 68%, #f4f7fa 100%);
  box-shadow: 0 4px 24px 0 rgba(30,90,180,0.09);
  border-radius: 50%;
}
.doctor-profile-img {
  box-shadow: 0 0 0 14px #eaf3fd, 0 6px 32px 0 rgba(30,90,180,0.08);
}
.doctor-avatar-info {
  position: absolute;
  left: 50%;
  bottom: -55px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(60,110,200,0.07);
  padding: 14px 18px 11px 18px;
  text-align: center;
  min-width: 220px;
  z-index: 2;
}


@media (max-width: 720px) {
    .doctor-profile-outer {



  }
  .doctor-profile-card {
    border-radius: 0;
    margin: 0;
    box-shadow: none;


    max-width: 100%;
  }
  .doctor-profile-name, .doctor-profile-position{
      text-align: center;
  }


    .about-container {
        flex-direction: column-reverse;
    }

    .about-us-title h1 {
        font-size: 4rem;

    }

    .abt-p {
        width: 100% !important;
        max-width: 90% !important;
        font-size: 15px;

    }

    .social-icons {
        margin-left: 10px;

    }

    .team-and-certificates-container {
        max-width: 100%;
    }

    .about-main-section, .faq-section, .site-footer, .contact-us-section, .l-d-section,  .doctor-profile-outer {
        margin: -40px 10px;
    }
    .d-section {
        margin: 0 10px;
    }
    .d-title {
        padding: 0;
        margin: 0;
    }

    .footer-about-us {
        margin: 0 0 4rem;
    }

    .director-card {
        display: none;
    }

    .pills-container {
        display: none;
    }

    .reviews-container {
        margin: 0;
    }

    .l-d-container {

        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .l-d-item {
        width: 100%;
    }


}


.doctor-search-filter {

  border-radius: 18px;
  padding: 18px 16px;
  margin-bottom: 32px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.doctor-search-filter input,
.doctor-search-filter select {
  outline: none;
  border: 1px solid #dde3f3;
  font-size: 1.05rem;
  border-radius: 12px;
  padding: 9px 14px;
  min-width: 170px;
  background: #fff;
  transition: border-color 0.18s;
}
.doctor-search-filter input:focus,
.doctor-search-filter select:focus {
  border-color: #348cf5;
}
.doctor-search-filter .search-btn {
  background: linear-gradient(90deg,#429df3 70%, #71c8fd 100%);
  color: #fff;
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(68,104,164,0.08);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
}
.doctor-search-filter .search-btn:hover {
  background: #2172e5;
  box-shadow: 0 6px 18px 0 rgba(68,104,164,0.13);
}
