﻿
/* =========================================================
   RESET + ACCESSIBILITY
========================================================= */

html {
    font-size: 18px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f7fb;
    color: #222;
    line-height: 1.8;
    overflow-x: hidden;
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   CONTAINER
========================================================= */

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* =========================================================
   SKIP LINK
========================================================= */

.skip-link {
    position: absolute;
    top: -60px;
    left: 10px;
    background: #000;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    z-index: 99999;
}

    .skip-link:focus-visible {
        top: 10px;
    }

/* =========================================================
   ACCESSIBILITY FOCUS
========================================================= */

:focus-visible {
    outline: 3px solid #FFD54A;
    outline-offset: 3px;
}

/* =========================================================
   TOP BAR
========================================================= */

.topbar {
    background: #2f3d7e;
    color: #fff;
    font-size: 14px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.topbar a {
    color: #fff;
    text-decoration: none;
}

/* =========================================================
   HEADER
========================================================= */

.header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    position: relative;
}

/* =========================================================
   LOGO
========================================================= */

.logo a {
    font-size: 24px;
    font-weight: 800;
    color: #1f3c88;
    text-decoration: none;
    white-space: nowrap;
}

/* =========================================================
   NAV
========================================================= */

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* =========================================================
   MENU
========================================================= */

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

    .menu > li {
        position: relative;
    }

    .menu a,
    .menu button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 10px 16px;
        font-size: 14px;
        font-weight: 700;
        color: #222;
        background: transparent;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.25s ease;
    }

        .menu a:hover,
        .menu button:hover {
            background: #1f3c88;
            color: #ffffff;
        }

    .menu .active {
        background: #1f3c88;
        color: #fff !important;
        border-radius: 10px;
    }

/* =========================================================
   DROPDOWN
========================================================= */

.submenu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: #ffffff;
    border-radius: 20px;
    padding: 12px;
    list-style: none;
    border: 1px solid #e7ebf3;
    box-shadow: 0 12px 30px rgba(15,23,42,0.10);
    z-index: 9999;
}

    .submenu.show {
        display: block;
    }

    .submenu li {
        margin-bottom: 2px;
    }

        .submenu li:last-child {
            margin-bottom: 0;
        }

        .submenu li a {
            display: flex;
            align-items: center;
            padding: 3px 8px;
            border-radius: 10px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            color: #222;
            transition: all 0.2s ease;
        }

            .submenu li a:hover {
                background: #1f3c88;
                color: #ffffff;
            }

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 70px;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

    .hero-content h1 {
        font-size: 64px;
        line-height: 1.1;
        margin-bottom: 24px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.45);
    }

    .hero-content p {
        font-size: 22px;
        line-height: 1.8;
        margin-bottom: 34px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.45);
    }

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 56px;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary {
    background: #2152ff;
    color: #fff;
}

    .btn-primary:hover {
        background: #1847eb;
    }

.btn-secondary {
    background: #fff;
    color: #111;
}

    .btn-secondary:hover {
        background: #f3f3f3;
    }

/* =========================================================
   ABOUT
========================================================= */

.info-section {
    padding: 40px 20px 20px;
}

.info-content {
    max-width: 1100px;
    margin: auto;
}

    .info-content h2 {
        font-size: 44px;
        margin-bottom: 30px;
    }

    .info-content p {
        font-size: 20px;
        line-height: 2;
        margin-bottom: 24px;
    }

/* =========================================================
   CONDITIONS
========================================================= */

.conditions-section {
    padding: 20px 20px 50px;
    background: #f7f9fc;
}

    .conditions-section h2 {
        text-align: center;
        margin-top: 0;
        margin-bottom: 30px;
        font-size: 44px;
    }

/* =========================================
   CONDITIONS LIST
========================================= */

.conditions-list {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 40px !important;
    list-style-type: disc !important;
    list-style-position: outside !important;
    text-align: left;
}

    .conditions-list li {
        display: list-item !important;
        list-style-type: disc !important;
        font-size: 22px;
        line-height: 2;
        margin-bottom: 10px;
        font-weight: 600;
        color: #222;
    }

        .conditions-list li::marker {
            color: #1f3c88;
            font-size: 1.2em;
        }

    .conditions-list li {
        font-size: 22px;
        line-height: 1.9;
        margin-bottom: 12px;
        font-weight: 600;
        color: #222;
    }



.info-content,
.dark-section p,
.home-cta p {
    max-width: 950px;
}

/* =========================================================
   DARK SECTION
========================================================= */

.dark-section {
    padding: 60px 20px;
    background: #14285D;
    color: #fff;
    text-align: center;
}

    .dark-section h2 {
        font-size: 44px;
        margin-bottom: 30px;
    }

    .dark-section p {
        max-width: 1000px;
        margin: 0 auto 24px;
        font-size: 20px;
        line-height: 2;
    }

/* =========================================================
   CTA
========================================================= */

.home-cta {
    padding: 60px 20px;
    text-align: center;
}

    .home-cta h2 {
        font-size: 50px;
        margin-bottom: 24px;
    }

    .home-cta p {
        font-size: 20px;
        margin-bottom: 34px;
    }

/* =========================================================
   FORM
========================================================= */

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    min-height: 48px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

textarea.form-control {
    min-height: 140px;
}

.text-danger {
    color: #c40000;
    font-size: 14px;
}

.error-summary {
    background: #ffe5e5;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-left: 5px solid red;
    border-radius: 4px;
}

.alert-success {
    background: #e6ffed;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 5px solid green;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #111;
    color: #fff;
    padding: 50px 0;
}

    .footer a {
        color: #5fa8ff;
    }

/* =========================================================
   HAMBURGER
========================================================= */

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1f3c88;
    flex-shrink: 0;
}

/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    max-width: 88%;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    padding: 80px 20px 30px;
    transition: right 0.3s ease;
    z-index: 99999;
    overflow-y: auto;
}

    .mobile-menu.open {
        right: 0;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu > nav > ul > li {
        margin-bottom: 12px;
    }

    .mobile-menu a,
    .mobile-dropdown-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 44px;
        padding: 12px 14px;
        font-size: 15px;
        font-weight: 600;
        color: #222;
        text-decoration: none;
        background: none;
        border: none;
        border-radius: 10px;
        text-align: left;
        cursor: pointer;
    }

        .mobile-menu a:hover,
        .mobile-dropdown-btn:hover {
            background: #f3f6ff;
            color: #1f3c88;
        }

/* =========================================================
   MOBILE SUBMENU
========================================================= */

.mobile-submenu {
    display: none;
    margin-top: 8px;
    margin-left: 10px;
    padding-left: 12px;
    border-left: 2px solid #e5eaff;
}

    .mobile-submenu.show {
        display: block;
    }

    .mobile-submenu li {
        margin-bottom: 6px;
    }

    .mobile-submenu a {
        padding: 5px 5px;
        font-size: 14px;
        color: #555;
    }

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .topbar {
        display: none;
    }

    .desktop-nav {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .header-inner {
        padding: 10px 0;
    }

    .logo {
        flex: 1;
        min-width: 0;
    }

        .logo a {
            font-size: 15px;
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .hero {
        min-height: 520px;
        padding: 100px 20px 60px;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-content p {
        max-width: 850px;
        margin-left: auto;
        margin-right: auto;
    }

    /* =========================================
   BUTTONS
========================================= */

    .btn-primary,
    .btn-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 12px 20px;
        border-radius: 999px;
        text-decoration: none;
        font-size: 15px;
        font-weight: 700;
        border: none;
        cursor: pointer;
        transition: all 0.25s ease;
    }

    .btn-primary {
        background: #2152ff;
        color: #fff;
    }

        .btn-primary:hover {
            background: #1847eb;
        }

    .btn-secondary {
        background: rgba(255,255,255,0.95);
        color: #111;
    }

        .btn-secondary:hover {
            background: #fff;
        }

    .info-content h2,
    .conditions-section h2,
    .dark-section h2,
    .home-cta h2 {
        font-size: 34px;
    }

    .info-content p,
    .conditions-list li,
    .dark-section p,
    .home-cta p {
        font-size: 16px;
    }

    .footer {
        text-align: center;
    }
}
.info-content p:last-child {
    margin-bottom: 0;
}

/* =========================================
   MOBILE OVERFLOW FIX
========================================= */

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* =========================================
   HERO MOBILE FIX
========================================= */

@media (max-width: 768px) {

    .hero {
        min-height: auto;
        padding: 90px 20px 50px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

        .hero-content h1 {
            font-size: 28px;
            line-height: 1.3;
            word-break: break-word;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 24px;
        }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: stretch;
        max-width: 320px;
        min-height: 54px;
    }

    .hero-img {
        object-position: center center;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
}
.hamburger::before {
    content: "\2630";
    font-size: 24px;
    color: #1f3c88;
    line-height: 1;
}

/* =========================================
   CONDITIONS GRID
========================================= */

.conditions-section {
    padding: 50px 20px;
    background: #f7f9fc;
}

    .conditions-section h2 {
        text-align: center;
        margin-bottom: 35px;
        font-size: 42px;
    }

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.condition-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    padding: 24px;
    background: #fff;
    border-radius: 18px;
    border-left: 6px solid #2152ff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    font-size: 22px;
    font-weight: 700;
    color: #1f3c88;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .condition-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.10);
        background: #f7f9ff;
    }

/* =========================================
   FOOTER
========================================= */

.footer {
    background: #111827;
    color: #fff;
    padding: 70px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.footer-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.footer p {
    color: #d1d5db;
    line-height: 1.9;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #93c5fd;
        text-decoration: none;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

/* =========================================
   MOBILE FOOTER
========================================= */

@media (max-width: 768px) {

    .footer {
        text-align: center;
    }
}

/* =========================================
   ACCESSIBILITY SPEAK TEXT
========================================= */

.speak-text {
    pointer-events: none;
}

/* =========================================
   ABOUT HERO
========================================= */

.about-hero {
    background: linear-gradient( rgba(31,60,136,0.82), rgba(31,60,136,0.82) ), url('/images/about-banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 60px 20px 45px;
}

    .about-hero h1 {
        font-size: 64px;
        margin-bottom: 18px;
        font-weight: 800;
        line-height: 1.1;
    }

    .about-hero p {
        max-width: 950px;
        margin: auto auto 20px;
        font-size: 22px;
        line-height: 1.7;
    }

/* =========================================
   MAIN SECTION
========================================= */

.about-main-section {
    padding: 80px 20px;
    background: #f4f6f9;
}

/* =========================================
   ABOUT BOX
========================================= */

.about-box {
    background: #fff;
    border-radius: 28px;
    padding: 50px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================================
   IMAGE
========================================= */

.about-left {
    text-align: center;
}

.about-doctor-image {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    border: 10px solid #f2f5ff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

/* =========================================
   RIGHT CONTENT
========================================= */

.about-right h2 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #1f3c88;
}

.about-right p {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 26px;
    color: #222;
}

/* =========================================
   INFO BOX
========================================= */

.about-info-box {
    background: #f8faff;
    border-left: 5px solid #2152ff;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 25px;
}

    .about-info-box h3 {
        margin-top: 0;
        margin-bottom: 12px;
        color: #1f3c88;
        font-size: 28px;
    }

    .about-info-box p {
        margin-bottom: 0;
    }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .about-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px;
    }

    .about-right h2 {
        font-size: 34px;
    }

    .about-right p {
        font-size: 17px;
    }

    .about-info-box h3 {
        font-size: 24px;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .about-hero p {
        font-size: 18px;
    }
}


/* =========================================
   CAREER HERO
========================================= */

.career-hero {
    background: linear-gradient( rgba(31,60,136,0.84), rgba(31,60,136,0.84) ), url('/images/career-banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 110px 20px 90px;
}

    .career-hero h1 {
        font-size: 64px;
        margin-bottom: 20px;
    }

    .career-hero p {
        max-width: 900px;
        margin: auto;
        font-size: 22px;
        line-height: 1.9;
    }

/* =========================================
   CAREER SECTION
========================================= */

.career-section {
    padding: 80px 20px;
}

.career-intro {
    text-align: center;
    max-width: 950px;
    margin: auto auto 60px;
}

    .career-intro h2 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .career-intro p {
        font-size: 22px;
        line-height: 2;
    }

/* =========================================
   GRID
========================================= */

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.career-card {
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    .career-card h3 {
        color: #1f3c88;
        margin-bottom: 24px;
        font-size: 28px;
    }

    .career-card ul {
        padding-left: 22px;
    }

    .career-card li {
        margin-bottom: 16px;
        font-size: 18px;
        line-height: 1.8;
    }

/* =========================================
   FORM SECTION
========================================= */

.career-form-section {
    padding: 20px 20px 90px;
}

.career-form-box {
    background: #fff;
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    .career-form-box h2 {
        text-align: center;
        margin-bottom: 40px;
        font-size: 42px;
    }

/* =========================================
   FORM
========================================= */

.career-form {
    display: grid;
    gap: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 18px;
}

.form-control {
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #d1d5db;
    font-size: 17px;
    font-family: inherit;
    transition: all 0.25s ease;
}

    .form-control:focus {
        outline: none;
        border-color: #2152ff;
        box-shadow: 0 0 0 4px rgba(33,82,255,0.15);
    }

textarea.form-control {
    resize: vertical;
}

/* =========================================
   VALIDATION
========================================= */

.text-danger {
    color: #dc2626;
    display: block;
    margin-top: 8px;
    font-size: 15px;
}

.validation-summary-errors {
    background: #fee2e2;
    color: #991b1b;
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 25px;
    font-weight: 600;
}

.success-message {
    background: #dcfce7;
    color: #166534;
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 25px;
    font-weight: 600;
}

    /* =========================================
   MOBILE
========================================= */

    @media (max-width: 768px) {

        .career-hero h1 {
            font-size: 42px;
        }

        .career-hero p,
        .career-intro p {
            font-size: 18px;
        }

        .career-intro h2,
        .career-form-box h2 {
            font-size: 34px;
        }

        .career-form-box {
            padding: 25px;
        }
    }

    /* =========================================*/
    .top-banner
{
    background: linear-gradient( 135deg, #1f3c88 0%, #3558b5 50%, #4f6fd1 100% );
    color: #fff;
    text-align: center;
    padding: 60px 20px 45px;
}

.top-banner h1 {
    color: #fff;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
}

.top-banner p {
    color: #fff;
    max-width: 980px;
    margin: auto auto 20px;
    font-size: 22px;
    line-height: 1.7;
}

/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .top-banner {
        padding: 45px 18px 35px;
    }

        .top-banner h1 {
            font-size: 42px;
        }

        .top-banner p {
            font-size: 18px;
            line-height: 1.7;
        }
}

.top-banner {
    background: linear-gradient( 135deg, #1f3c88 0%, #3558b5 50%, #4f6fd1 100% ) !important;
    color: #fff !important;
    text-align: center !important;
    padding: 10px 20px 45px !important;
}

    .top-banner h1,
    .top-banner p {
        color: #fff !important;
    }


/* =========================================
   PRIVACY SECTION
========================================= */

.privacy-section {
    padding: 70px 20px;
    background: #f4f6f9;
}

/* =========================================
   PRIVACY CARD
========================================= */

.privacy-card {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================================
   INTRO
========================================= */

.policy-intro {
    font-size: 20px;
    line-height: 2;
    color: #222;
    margin-bottom: 40px;
}

/* =========================================
   DATE
========================================= */

.policy-date {
    text-align: center;
    margin-bottom: 35px;
    font-size: 18px;
    color: #444;
}

/* =========================================
   POLICY BLOCK
========================================= */

.policy-block {
    margin-top: 45px;
}

    .policy-block h2 {
        font-size: 34px;
        margin-bottom: 20px;
        color: #1f3c88;
    }

    .policy-block p,
    .policy-block li {
        font-size: 19px;
        line-height: 2;
        color: #222;
    }

    .policy-block ul {
        padding-left: 28px;
    }

    .policy-block li {
        margin-bottom: 14px;
    }

    /* =========================================
   LINKS
========================================= */

    .policy-block a {
        color: #2152ff;
        text-decoration: none;
    }

        .policy-block a:hover {
            text-decoration: underline;
        }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .privacy-card {
        padding: 28px;
    }

    .policy-block h2 {
        font-size: 28px;
    }

    .policy-block p,
    .policy-block li,
    .policy-date,
    .policy-intro {
        font-size: 16px;
    }
}
/* =========================================
   BREADCRUMB
========================================= */

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    margin-bottom: 20px;
    font-size: 17px;
    color: rgba(255,255,255,0.92);
}

    .breadcrumb a {
        color: #fff;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

        .breadcrumb a:hover {
            opacity: 0.8;
        }

/* =========================================
   TREATMENTS SECTION
========================================= */

.treatments-section {
    padding: 90px 20px;
    background: linear-gradient( to bottom, #f4f7fb, #eef3f9 );
}

/* =========================================
   INTRO
========================================= */

.treatments-intro {
    text-align: center;
    max-width: 950px;
    margin: auto auto 70px;
}

/* BADGE */

.section-badge {
    display: inline-block;
    background: rgba(31,60,136,0.08);
    color: #1f3c88;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* TITLE */

.treatments-intro h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #102a43;
    margin-bottom: 24px;
}

/* TEXT */

.treatments-intro p {
    font-size: 22px;
    line-height: 1.9;
    color: #52606d;
}

/* =========================================
   GRID
========================================= */

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

/* =========================================
   CARD
========================================= */

.treatment-card {
    background: #fff;
    border-radius: 28px;
    padding: 38px;
    border: 1px solid #e5edf5;
    box-shadow: 0 15px 35px rgba(15,23,42,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .treatment-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(15,23,42,0.12);
    }

/* =========================================
   ICON
========================================= */

.treatment-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient( 135deg, #1f3c88, #4f6fd1 );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 26px;
    box-shadow: 0 10px 25px rgba(31,60,136,0.18);
}

/* =========================================
   TITLE
========================================= */

.treatment-card h3 {
    font-size: 30px;
    line-height: 1.4;
    font-weight: 800;
    color: #102a43;
    margin-bottom: 18px;
}

/* =========================================
   TEXT
========================================= */

.treatment-card p {
    font-size: 18px;
    line-height: 1.9;
    color: #52606d;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .treatments-section {
        padding: 70px 16px;
    }

    .treatments-intro h2 {
        font-size: 40px;
    }

    .treatments-intro p {
        font-size: 17px;
    }

    .treatment-card {
        padding: 28px;
    }

        .treatment-card h3 {
            font-size: 24px;
        }

        .treatment-card p {
            font-size: 16px;
        }
}

/* =========================================
   ACCESSIBILITY SECTION
========================================= */

.accessibility-section {
    padding: 90px 20px;
    background: linear-gradient( to bottom, #f4f7fb, #eef3f9 );
}

/* =========================================
   CARD
========================================= */

.accessibility-card {
    max-width: 1050px;
    margin: auto;
    background: #fff;
    border-radius: 30px;
    padding: 55px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}

/* =========================================
   BLOCK
========================================= */

.statement-block {
    margin-bottom: 55px;
}

    .statement-block:last-child {
        margin-bottom: 0;
    }

    /* =========================================
   TITLE
========================================= */

    .statement-block h2 {
        font-size: 40px;
        font-weight: 800;
        color: #102a43;
        margin-bottom: 22px;
    }

    /* =========================================
   TEXT
========================================= */

    .statement-block p {
        font-size: 19px;
        line-height: 2;
        color: #52606d;
        margin-bottom: 20px;
    }

    /* =========================================
   LIST
========================================= */

    .statement-block ul {
        padding-left: 24px;
    }

    .statement-block li {
        font-size: 18px;
        line-height: 2;
        color: #52606d;
        margin-bottom: 10px;
    }

/* =========================================
   CONTACT BOX
========================================= */

.accessibility-contact {
    background: #f4f7fb;
    border-left: 5px solid #1f3c88;
    padding: 28px;
    border-radius: 18px;
    margin-top: 25px;
}

    .accessibility-contact a {
        color: #2152ff;
        text-decoration: none;
    }

        .accessibility-contact a:hover {
            text-decoration: underline;
        }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .accessibility-section {
        padding: 70px 16px;
    }

    .accessibility-card {
        padding: 30px;
    }

    .statement-block h2 {
        font-size: 30px;
    }

    .statement-block p,
    .statement-block li {
        font-size: 16px;
    }
}

/* =========================================
   NEWS SECTION
========================================= */

.news-section {
    padding: 90px 20px;
    background: linear-gradient( to bottom, #f4f7fb, #eef3f9 );
}

/* =========================================
   MAIN CARD
========================================= */

.news-card {
    max-width: 1150px;
    margin: auto;
    background: #fff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}

/* =========================================
   BADGE
========================================= */

.news-badge {
    display: inline-block;
    background: rgba(31,60,136,0.08);
    color: #1f3c88;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* =========================================
   TITLE
========================================= */

.news-card h2 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #102a43;
    margin-bottom: 24px;
}

/* =========================================
   INTRO
========================================= */

.news-intro {
    font-size: 21px;
    line-height: 2;
    color: #52606d;
    margin-bottom: 55px;
}

/* =========================================
   GRID
========================================= */

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

/* =========================================
   FEATURE CARD
========================================= */

.news-feature-card {
    background: #f8fbff;
    border: 1px solid #e3ebf5;
    border-radius: 26px;
    padding: 35px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .news-feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(15,23,42,0.08);
    }

/* =========================================
   ICON
========================================= */

.news-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient( 135deg, #1f3c88, #4f6fd1 );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(31,60,136,0.18);
}

/* =========================================
   FEATURE TITLE
========================================= */

.news-feature-card h3 {
    font-size: 30px;
    line-height: 1.4;
    color: #102a43;
    margin-bottom: 18px;
}

/* =========================================
   FEATURE TEXT
========================================= */

.news-feature-card p {
    font-size: 18px;
    line-height: 1.9;
    color: #52606d;
    margin-bottom: 25px;
}

/* =========================================
   LINK
========================================= */

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2152ff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

    .news-link:hover {
        text-decoration: underline;
    }

/* =========================================
   BOTTOM TEXT
========================================= */

.news-bottom-text {
    margin-top: 55px;
    font-size: 20px;
    line-height: 2;
    color: #52606d;
    background: #f4f7fb;
    padding: 35px;
    border-radius: 22px;
    border-left: 5px solid #1f3c88;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .news-section {
        padding: 70px 16px;
    }

    .news-card {
        padding: 30px;
    }

        .news-card h2 {
            font-size: 38px;
        }

    .news-intro,
    .news-feature-card p,
    .news-bottom-text {
        font-size: 16px;
    }

    .news-feature-card {
        padding: 28px;
    }

        .news-feature-card h3 {
            font-size: 24px;
        }
}


/* =========================================
   PARTNER SECTION
========================================= */

.partner-section {
    padding: 80px 20px 40px;
    background: linear-gradient( to bottom, #f4f7fb, #eef3f9 );
}

/* =========================================
   GRID
========================================= */

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

/* =========================================
   CARD
========================================= */

.partner-card {
    background: #fff;
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .partner-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 50px rgba(15,23,42,0.12);
    }

/* =========================================
   ICON
========================================= */

.partner-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: linear-gradient( 135deg, #1f3c88, #4f6fd1 );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 28px;
    box-shadow: 0 14px 30px rgba(31,60,136,0.20);
}

/* =========================================
   TITLE
========================================= */

.partner-card h3 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #102a43;
}

/* =========================================
   TEXT
========================================= */

.partner-card p {
    font-size: 18px;
    line-height: 1.9;
    color: #52606d;
}

/* =========================================
   FORM SECTION
========================================= */

.partner-form-section {
    padding: 40px 20px 90px;
    background: linear-gradient( to bottom, #eef3f9, #f7f9fc );
}

/* =========================================
   FORM BOX
========================================= */

.partner-form-box {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    border-radius: 32px;
    padding: 55px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
}

    /* =========================================
   FORM TITLE
========================================= */

    .partner-form-box h2 {
        text-align: center;
        font-size: 48px;
        color: #102a43;
        margin-bottom: 16px;
    }

/* =========================================
   SUBTITLE
========================================= */

.partner-form-subtitle {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #52606d;
    max-width: 850px;
    margin: auto auto 45px;
}

/* =========================================
   FORM
========================================= */

.partner-form {
    width: 100%;
}

/* =========================================
   ROW
========================================= */

.form-row {
    display: flex;
    gap: 28px;
    margin-bottom: 28px;
    width: 100%;
}

/* =========================================
   GROUP
========================================= */

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

    /* =========================================
   LABEL
========================================= */

    .form-group label {
        font-size: 16px;
        font-weight: 700;
        color: #102a43;
        margin-bottom: 12px;
    }

    /* =========================================
   INPUTS
========================================= */

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 18px 22px;
        border-radius: 18px;
        border: 1px solid #d9e2ec;
        background: #f9fbfd;
        font-size: 16px;
        color: #102a43;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    /* =========================================
   TEXTAREA
========================================= */

    .form-group textarea {
        resize: vertical;
        min-height: 180px;
    }

        /* =========================================
   FOCUS
========================================= */

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2152ff;
            box-shadow: 0 0 0 4px rgba(33,82,255,0.10);
        }

/* =========================================
   CHECKBOX
========================================= */

.partner-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 30px 0;
}

    .partner-checkbox label {
        font-size: 15px;
        line-height: 1.8;
        color: #52606d;
    }

    .partner-checkbox a {
        color: #2152ff;
        text-decoration: none;
    }

        .partner-checkbox a:hover {
            text-decoration: underline;
        }

/* =========================================
   BUTTON
========================================= */

.partner-submit-btn {
    border: none;
    background: linear-gradient( 135deg, #2152ff, #4f6fd1 );
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .partner-submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 30px rgba(33,82,255,0.25);
    }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .partner-section,
    .partner-form-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .partner-form-box {
        padding: 32px;
    }

        .partner-form-box h2 {
            font-size: 36px;
        }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .partner-card {
        padding: 28px;
    }

        .partner-card h3 {
            font-size: 24px;
        }

        .partner-card p,
        .partner-form-subtitle {
            font-size: 16px;
        }
}

/* =========================================
   VALIDATION
========================================= */

.validation-message {
    display: block;
    margin-top: 8px;
    min-height: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #d92d20;
}

/* =========================================
   ERROR INPUT
========================================= */

.input-error {
    border-color: #d92d20 !important;
    background: #fff5f5 !important;
}

/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    padding: 90px 20px;
    background: linear-gradient( to bottom, #f4f7fb, #eef3f9 );
}

/* =========================================
   WRAPPER
========================================= */

.contact-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: start;
}

/* =========================================
   LEFT INFO BOX
========================================= */

.contact-info-box {
    background: linear-gradient( 135deg, #1f3c88, #3559c7 );
    color: #fff;
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 20px 45px rgba(31,60,136,0.22);
}

/* =========================================
   BADGE
========================================= */

.contact-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* =========================================
   TITLE
========================================= */

.contact-info-box h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
}

/* =========================================
   TEXT
========================================= */

.contact-info-box p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.92);
}

/* =========================================
   DETAIL
========================================= */

.contact-detail {
    margin-top: 34px;
}

    .contact-detail strong {
        display: block;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .contact-detail a {
        color: #fff;
        text-decoration: none;
    }

        .contact-detail a:hover {
            text-decoration: underline;
        }

/* =========================================
   FORM BOX
========================================= */

.contact-form-box {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
}

/* =========================================
   FORM
========================================= */

.contact-form {
    width: 100%;
}

    /* =========================================
   GROUP
========================================= */

    .contact-form .form-group {
        margin-bottom: 28px;
    }

    /* =========================================
   LABEL
========================================= */

    .contact-form label {
        display: block;
        font-size: 16px;
        font-weight: 700;
        color: #102a43;
        margin-bottom: 12px;
    }

    /* =========================================
   INPUT
========================================= */

    .contact-form .form-control {
        width: 100%;
        box-sizing: border-box;
        padding: 18px 22px;
        border-radius: 18px;
        border: 1px solid #d9e2ec;
        background: #f9fbfd;
        font-size: 16px;
        color: #102a43;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    /* =========================================
   TEXTAREA
========================================= */

    .contact-form textarea.form-control {
        resize: vertical;
        min-height: 180px;
    }

    /* =========================================
   FOCUS
========================================= */

    .contact-form .form-control:focus {
        outline: none;
        border-color: #2152ff;
        box-shadow: 0 0 0 4px rgba(33,82,255,0.10);
    }

/* =========================================
   BUTTON
========================================= */

.contact-submit-btn {
    border: none;
    background: linear-gradient( 135deg, #2152ff, #4f6fd1 );
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 34px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .contact-submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 30px rgba(33,82,255,0.25);
    }

/* =========================================
   SUCCESS
========================================= */

.alert-success {
    background: #ecfdf3;
    color: #027a48;
    border: 1px solid #abefc6;
    border-radius: 18px;
    padding: 18px 22px;
    margin-bottom: 28px;
    font-weight: 600;
}

/* =========================================
   ERROR SUMMARY
========================================= */

.error-summary {
    background: #fff5f5;
    border: 1px solid #fecaca;
    color: #b42318;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 28px;
}

    .error-summary h3 {
        margin: 0;
        font-size: 18px;
    }

/* =========================================
   VALIDATION
========================================= */

.text-danger {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #d92d20;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 992px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .contact-section {
        padding: 70px 16px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 32px;
    }

        .contact-info-box h2 {
            font-size: 34px;
        }

        .contact-info-box p {
            font-size: 16px;
        }

    .contact-submit-btn {
        width: 100%;
    }
}

/* =========================================
   MAP BOX
========================================= */

.contact-map-box {
    margin-top: 40px;
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
}

    /* =========================================
   MAP TITLE
========================================= */

    .contact-map-box h2 {
        font-size: 36px;
        color: #102a43;
        margin-bottom: 12px;
    }

    .contact-map-box p {
        font-size: 18px;
        color: #52606d;
        margin-bottom: 28px;
    }

/* =========================================
   MAP WRAPPER
========================================= */

.map-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #d9e2ec;
}

    .map-wrapper iframe {
        width: 100%;
        height: 450px;
        border: 0;
        display: block;
    }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .contact-map-box {
        padding: 28px;
    }

        .contact-map-box h2 {
            font-size: 28px;
        }

        .contact-map-box p {
            font-size: 16px;
        }

    .map-wrapper iframe {
        height: 320px;
    }
}

/* =========================================
   CONDITION MAIN SECTION
========================================= */

.condition-main-section {
    padding: 90px 20px;
    background: linear-gradient( to bottom, #f4f7fb, #eef3f9 );
}

/* =========================================
   GRID
========================================= */

.condition-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* =========================================
   IMAGE BOX
========================================= */

.condition-image-box {
    position: relative;
}

/* =========================================
   IMAGE
========================================= */

.condition-main-image {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    box-shadow: 0 20px 45px rgba(15,23,42,0.12);
}

/* =========================================
   CONTENT
========================================= */

.condition-content-box {
    background: #fff;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}

/* =========================================
   BADGE
========================================= */

.section-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(33,82,255,0.08);
    color: #2152ff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

/* =========================================
   TITLE
========================================= */

.condition-content-box h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #102a43;
    margin-bottom: 26px;
}

/* =========================================
   TEXT
========================================= */

.condition-content-box p {
    font-size: 19px;
    line-height: 2;
    color: #52606d;
    margin-bottom: 22px;
}

/* =========================================
   SYMPTOMS SECTION
========================================= */

.symptoms-section {
    padding: 90px 20px;
    background: #fff;
}

/* =========================================
   HEADER
========================================= */

.section-header {
    text-align: center;
    max-width: 900px;
    margin: auto auto 65px;
}

    .section-header h2 {
        font-size: 50px;
        line-height: 1.2;
        color: #102a43;
        margin-bottom: 24px;
    }

    .section-header p {
        font-size: 20px;
        line-height: 1.9;
        color: #52606d;
    }

/* =========================================
   GRID
========================================= */

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* =========================================
   CARD
========================================= */

.symptom-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #e5edf5;
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .symptom-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 55px rgba(15,23,42,0.12);
    }

/* =========================================
   IMAGE
========================================= */

.symptom-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* =========================================
   CONTENT
========================================= */

.symptom-content {
    padding: 30px;
}

    .symptom-content h3 {
        font-size: 28px;
        color: #102a43;
        margin-bottom: 18px;
    }

    .symptom-content p {
        font-size: 18px;
        line-height: 1.9;
        color: #52606d;
    }

/* =========================================
   DARK SECTION
========================================= */

.dark-section {
    padding: 100px 20px;
    background: linear-gradient( 135deg, #102a43, #1f3c88 );
    text-align: center;
    color: #fff;
}

    .dark-section h2 {
        font-size: 52px;
        line-height: 1.2;
        margin-bottom: 28px;
    }

    .dark-section p {
        max-width: 950px;
        margin: auto auto 24px;
        font-size: 20px;
        line-height: 2;
        color: rgba(255,255,255,0.92);
    }

/* =========================================
   CTA SECTION
========================================= */

.home-cta {
    padding: 90px 20px;
    text-align: center;
    background: linear-gradient( to bottom, #f4f7fb, #eef3f9 );
}

    .home-cta h2 {
        font-size: 52px;
        line-height: 1.2;
        color: #102a43;
        margin-bottom: 24px;
    }

    .home-cta p {
        max-width: 850px;
        margin: auto auto 35px;
        font-size: 20px;
        line-height: 1.9;
        color: #52606d;
    }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 992px) {

    .condition-main-grid {
        grid-template-columns: 1fr;
    }

    .symptoms-grid {
        grid-template-columns: 1fr 1fr;
    }

    .condition-main-image {
        height: 500px;
    }
}

@media (max-width: 768px) {

    .condition-main-section,
    .symptoms-section,
    .dark-section,
    .home-cta {
        padding-left: 16px;
        padding-right: 16px;
    }

    .condition-content-box {
        padding: 32px;
    }

    .condition-main-image {
        height: 340px;
    }

    .condition-content-box h2,
    .section-header h2,
    .dark-section h2,
    .home-cta h2 {
        font-size: 36px;
    }

    .condition-content-box p,
    .section-header p,
    .dark-section p,
    .home-cta p,
    .symptom-content p {
        font-size: 16px;
    }

    .symptoms-grid {
        grid-template-columns: 1fr;
    }

    .symptom-content {
        padding: 24px;
    }

        .symptom-content h3 {
            font-size: 24px;
        }
}

/* =========================================
   CONDITION MAIN SECTION
========================================= */

.condition-main-section {
    padding: 90px 20px;
    background: linear-gradient( to bottom, #f4f7fb, #eef3f9 );
}

/* =========================================
   GRID
========================================= */

.condition-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* =========================================
   IMAGE BOX
========================================= */

.condition-image-box {
    position: relative;
}

/* =========================================
   IMAGE
========================================= */

.condition-main-image {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    box-shadow: 0 20px 45px rgba(15,23,42,0.12);
}

/* =========================================
   CONTENT
========================================= */

.condition-content-box {
    background: #fff;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}

/* =========================================
   BADGE
========================================= */

.section-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(33,82,255,0.08);
    color: #2152ff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

/* =========================================
   TITLE
========================================= */

.condition-content-box h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #102a43;
    margin-bottom: 26px;
}

/* =========================================
   TEXT
========================================= */

.condition-content-box p {
    font-size: 19px;
    line-height: 2;
    color: #52606d;
    margin-bottom: 22px;
}

/* =========================================
   SYMPTOMS SECTION
========================================= */

.symptoms-section {
    padding: 90px 20px;
    background: #fff;
}

/* =========================================
   HEADER
========================================= */

.section-header {
    text-align: center;
    max-width: 900px;
    margin: auto auto 65px;
}

    .section-header h2 {
        font-size: 50px;
        line-height: 1.2;
        color: #102a43;
        margin-bottom: 24px;
    }

    .section-header p {
        font-size: 20px;
        line-height: 1.9;
        color: #52606d;
    }

/* =========================================
   GRID
========================================= */

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* =========================================
   CARD
========================================= */

.symptom-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #e5edf5;
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .symptom-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 55px rgba(15,23,42,0.12);
    }

/* =========================================
   IMAGE
========================================= */

.symptom-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* =========================================
   CONTENT
========================================= */

.symptom-content {
    padding: 30px;
}

    .symptom-content h3 {
        font-size: 28px;
        color: #102a43;
        margin-bottom: 18px;
    }

    .symptom-content p {
        font-size: 18px;
        line-height: 1.9;
        color: #52606d;
    }

/* =========================================
   DARK SECTION
========================================= */

.dark-section {
    padding: 100px 20px;
    background: linear-gradient( 135deg, #102a43, #1f3c88 );
    text-align: center;
    color: #fff;
}

    .dark-section h2 {
        font-size: 52px;
        line-height: 1.2;
        margin-bottom: 28px;
    }

    .dark-section p {
        max-width: 950px;
        margin: auto auto 24px;
        font-size: 20px;
        line-height: 2;
        color: rgba(255,255,255,0.92);
    }

/* =========================================
   CTA SECTION
========================================= */

.home-cta {
    padding: 90px 20px;
    text-align: center;
    background: linear-gradient( to bottom, #f4f7fb, #eef3f9 );
}

    .home-cta h2 {
        font-size: 52px;
        line-height: 1.2;
        color: #102a43;
        margin-bottom: 24px;
    }

    .home-cta p {
        max-width: 850px;
        margin: auto auto 35px;
        font-size: 20px;
        line-height: 1.9;
        color: #52606d;
    }

/* =========================================
   BACK SECTION
========================================= */

.back-section {
    padding: 20px 20px 90px;
    background: #eef3f9;
}

/* =========================================
   BACK BUTTON
========================================= */

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    background: linear-gradient( 135deg, #1f3c88, #3559c7 );
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .back-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(31,60,136,0.20);
    }

    .back-button:focus {
        outline: 3px solid #93c5fd;
        outline-offset: 3px;
    }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 992px) {

    .condition-main-grid {
        grid-template-columns: 1fr;
    }

    .symptoms-grid {
        grid-template-columns: 1fr 1fr;
    }

    .condition-main-image {
        height: 500px;
    }
}

@media (max-width: 768px) {

    .condition-main-section,
    .symptoms-section,
    .dark-section,
    .home-cta,
    .back-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .condition-content-box {
        padding: 32px;
    }

    .condition-main-image {
        height: 340px;
    }

    .condition-content-box h2,
    .section-header h2,
    .dark-section h2,
    .home-cta h2 {
        font-size: 36px;
    }

    .condition-content-box p,
    .section-header p,
    .dark-section p,
    .home-cta p,
    .symptom-content p {
        font-size: 16px;
    }

    .symptoms-grid {
        grid-template-columns: 1fr;
    }

    .symptom-content {
        padding: 24px;
    }

        .symptom-content h3 {
            font-size: 24px;
        }

   
}

/* =========================================
   CONDITION MAIN SECTION
========================================= */

.condition-main-section {
    padding: 90px 20px;
    background: linear-gradient( to bottom, #f4f7fb, #eef3f9 );
}

/* =========================================
   GRID
========================================= */

.condition-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* =========================================
   IMAGE BOX
========================================= */

.condition-image-box {
    position: relative;
}

/* =========================================
   IMAGE
========================================= */

.condition-main-image {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    box-shadow: 0 20px 45px rgba(15,23,42,0.12);
}

/* =========================================
   CONTENT BOX
========================================= */

.condition-content-box {
    background: #fff;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}

/* =========================================
   BADGE
========================================= */

.section-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(33,82,255,0.08);
    color: #2152ff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

/* =========================================
   TITLE
========================================= */

.condition-content-box h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #102a43;
    margin-bottom: 26px;
}

/* =========================================
   PARAGRAPH
========================================= */

.condition-content-box p {
    font-size: 19px;
    line-height: 2;
    color: #52606d;
    margin-bottom: 22px;
}

/* =========================================
   SYMPTOMS SECTION
========================================= */

.symptoms-section {
    padding: 90px 20px;
    background: #fff;
}

/* =========================================
   SECTION HEADER
========================================= */

.section-header {
    text-align: center;
    max-width: 900px;
    margin: auto auto 65px;
}

    .section-header h2 {
        font-size: 50px;
        line-height: 1.2;
        color: #102a43;
        margin-bottom: 24px;
    }

    .section-header p {
        font-size: 20px;
        line-height: 1.9;
        color: #52606d;
    }

/* =========================================
   GRID
========================================= */

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* =========================================
   CARD
========================================= */

.symptom-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #e5edf5;
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .symptom-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 55px rgba(15,23,42,0.12);
    }

/* =========================================
   IMAGE
========================================= */

.symptom-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* =========================================
   CONTENT
========================================= */

.symptom-content {
    padding: 30px;
}

    .symptom-content h3 {
        font-size: 28px;
        color: #102a43;
        margin-bottom: 18px;
    }

    .symptom-content p {
        font-size: 18px;
        line-height: 1.9;
        color: #52606d;
    }

/* =========================================
   DARK SECTION
========================================= */

.dark-section {
    padding: 100px 20px;
    background: linear-gradient( 135deg, #102a43, #1f3c88 );
    text-align: center;
    color: #fff;
}

    .dark-section h2 {
        font-size: 52px;
        line-height: 1.2;
        margin-bottom: 28px;
    }

    .dark-section p {
        max-width: 950px;
        margin: auto auto 24px;
        font-size: 20px;
        line-height: 2;
        color: rgba(255,255,255,0.92);
    }

/* =========================================
   CTA SECTION
========================================= */

.home-cta {
    padding: 90px 20px;
    text-align: center;
    background: linear-gradient( to bottom, #f4f7fb, #eef3f9 );
}

    .home-cta h2 {
        font-size: 52px;
        line-height: 1.2;
        color: #102a43;
        margin-bottom: 24px;
    }

    .home-cta p {
        max-width: 850px;
        margin: auto auto 35px;
        font-size: 20px;
        line-height: 1.9;
        color: #52606d;
    }

/* =========================================
   BACK SECTION
========================================= */

.back-section {
    padding: 20px 20px 90px;
    background: #eef3f9;
}

/* =========================================
   BACK BUTTON
========================================= */

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    background: linear-gradient( 135deg, #1f3c88, #3559c7 );
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .back-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(31,60,136,0.20);
    }

    .back-button:focus {
        outline: 3px solid #93c5fd;
        outline-offset: 3px;
    }

/* =========================================
   MOBILE TABLET
========================================= */

@media (max-width: 992px) {

    .condition-main-grid {
        grid-template-columns: 1fr;
    }

    .symptoms-grid {
        grid-template-columns: 1fr 1fr;
    }

    .condition-main-image {
        height: 500px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .condition-main-section,
    .symptoms-section,
    .dark-section,
    .home-cta,
    .back-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .condition-content-box {
        padding: 32px;
    }

    .condition-main-image {
        height: 340px;
    }

    .condition-content-box h2,
    .section-header h2,
    .dark-section h2,
    .home-cta h2 {
        font-size: 36px;
    }

    .condition-content-box p,
    .section-header p,
    .dark-section p,
    .home-cta p,
    .symptom-content p {
        font-size: 16px;
    }

    .symptoms-grid {
        grid-template-columns: 1fr;
    }

    .symptom-content {
        padding: 24px;
    }

        .symptom-content h3 {
            font-size: 24px;
        }

    .back-button {
        width: stretch;
        justify-content: center;
    }
}



/* =========================================
   MOBILE MENU PANEL
========================================= */

.mobile-menu {
    background: linear-gradient( 180deg, #ffffff 0%, #f7f9ff 100% );
    box-shadow: -10px 0 35px rgba(15,23,42,0.12);
}

    /* =========================================
   MOBILE NAV LINKS
========================================= */

    .mobile-menu nav ul {
        padding: 22px 18px;
    }

        .mobile-menu nav ul li {
            margin-bottom: 10px;
        }

            /* LINKS */

            .mobile-menu nav ul li a,
            .mobile-dropdown-btn {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                min-height: 56px;
                padding: 0 18px;
                border-radius: 16px;
                background: #ffffff;
                border: 1px solid #e7ebf3;
                color: #1f2937;
                font-size: 17px;
                font-weight: 700;
                text-decoration: none;
                transition: all 0.25s ease;
                box-shadow: 0 4px 12px rgba(15,23,42,0.04);
            }

                /* HOVER / ACTIVE */

                .mobile-menu nav ul li a:hover,
                .mobile-dropdown-btn:hover {
                    background: #1f3c88;
                    color: #ffffff;
                    transform: translateY(-1px);
                    box-shadow: 0 10px 20px rgba(31,60,136,0.18);
                }

/* =========================================
   SUBMENU
========================================= */

.mobile-submenu {
    margin-top: 8px;
    padding-left: 10px;
    border-left: 3px solid #dbe4ff;
}

    .mobile-submenu li {
        margin-bottom: 8px;
    }

    .mobile-submenu a {
        min-height: 48px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        background: #f8faff !important;
    }

/* =========================================
   MOBILE MENU TOP
========================================= */

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #e7ebf3;
}

/* TITLE */

.mobile-menu-title {
    font-size: 20px;
    font-weight: 800;
    color: #1f3c88;
}

/* CLOSE BUTTON */

.mobile-close {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: #1f3c88;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .mobile-close:hover {
        background: #162d69;
        transform: rotate(90deg);
    }