 /* ============================================
           RESET & VARIABLES
        ============================================ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --blue-deep:    #0A2540;
            --blue-mid:     #1A5276;
            --blue-bright:  #2471A3;
            --blue-pale:    #D6EAF8;
            --teal:         #148F77;
            --warm-white:   #F7F8FA;
            --off-white:    #EEF1F5;
            --text-dark:    #0A2540;
            --text-mid:     #2C3E50;
            --text-light:   #5D6D7E;
            --white:        #FFFFFF;
            --border:       rgba(10,37,64,0.1);

            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body:    'DM Sans', system-ui, sans-serif;

            --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
            --shadow-sm:  0 1px 3px rgba(10,37,64,0.08);
            --shadow-md:  0 4px 16px rgba(10,37,64,0.1);
            --shadow-lg:  0 12px 40px rgba(10,37,64,0.15);
        }

        html { scroll-behavior: smooth; font-size: 16px; }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background: var(--white);
            line-height: 1.65;
            overflow-x: hidden;
        }

        h1,h2,h3,h4,h5 {
            font-family: var(--font-display);
            line-height: 1.15;
            color: var(--blue-deep);
        }


        

        a { color: var(--blue-bright); text-decoration: none; transition: var(--transition); }
        a:hover { color: var(--blue-deep); }
        img { max-width: 100%; height: auto; display: block; }
        p { line-height: 1.75; }

        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #ffffff;
}


        /* ============================================
           TOP BAR
        ============================================ */


        /* ============================================
   TOP BAR
============================================ */
.top-bar {
    background: var(--blue-deep);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    padding: 0.55rem 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.top-bar svg {
    opacity: 0.6;
    flex-shrink: 0;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.2rem 0.75rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    white-space: nowrap;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}


/* ============================================
   TABLET RESPONSIVE
============================================ */
@media (max-width: 768px) {

    .top-bar {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }

    .top-bar .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }

    .top-bar-left {
        justify-content: center;
        gap: 0.75rem 1.25rem;
        width: 100%;
    }

    .lang-btn {
        font-size: 0.7rem;
        padding: 0.25rem 0.65rem;
    }
}


/* ============================================
   MOBILE RESPONSIVE
============================================ */
@media (max-width: 480px) {

    .top-bar {
        font-size: 0.7rem;
        padding: 0.45rem 0;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }

    .top-bar-left {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }

    .top-bar-left span {
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .lang-btn {
        font-size: 0.68rem;
        padding: 0.25rem 0.7rem;
    }
}


/* ============================================
   VERY SMALL PHONES
============================================ */
@media (max-width: 360px) {

    .top-bar {
        font-size: 0.65rem;
    }

    .top-bar-left {
        gap: 0.25rem;
    }

    .lang-btn {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }
}

    

        /* ============================================
           NAVIGATION
        ============================================ */
        .navbar {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow var(--transition);
        }
        .navbar.scrolled { box-shadow: var(--shadow-md); }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.85rem 0;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            color: var(--blue-deep);
        }
        /* Logo mark matches index.html — 90px circular image */
        .logo-mark {
            width: 90px; height: 90px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }
        .logo-mark svg { width: 24px; height: 24px; }
        .logo-title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            line-height: 1.1;
            color: var(--blue-deep);
        }
        .logo-sub {
            font-size: 0.7rem;
            color: var(--text-light);
            letter-spacing: 0.04em;
            font-weight: 400;
        }

        .nav-menu { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
        .nav-menu > li > a {
            color: var(--text-mid);
            font-size: 0.875rem;
            font-weight: 500;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            transition: var(--transition);
            display: flex; align-items: center; gap: 0.25rem;
        }
        .nav-menu > li > a:hover,
        .nav-menu > li > a.active { color: var(--blue-deep); background: var(--warm-white); }
        .nav-menu .arrow { font-size: 0.6rem; opacity: 0.5; transition: transform var(--transition); }
        .dropdown { position: relative; }
        .dropdown:hover .arrow { transform: rotate(180deg); }
        .dropdown-menu {
            position: absolute; top: calc(100% + 0.5rem); left: 0;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            padding: 0.5rem;
            min-width: 210px;
            list-style: none;
            opacity: 0; visibility: hidden;
            transform: translateY(-6px);
            transition: var(--transition);
        }
        .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-menu a {
            display: block;
            padding: 0.55rem 0.85rem;
            font-size: 0.85rem;
            color: var(--text-mid);
            border-radius: 5px;
            transition: var(--transition);
        }
        .dropdown-menu a:hover { background: var(--warm-white); color: var(--blue-deep); }

        .btn-donate-nav {
            background: var(--blue-deep);
            color: var(--white) !important;
            padding: 0.55rem 1.35rem !important;
            border-radius: 5px;
            font-weight: 600 !important;
            letter-spacing: 0.02em;
            margin-left: 0.5rem;
        }
        .btn-donate-nav:hover { background: var(--blue-mid) !important; transform: none; }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.4rem;
        }
        .mobile-toggle span {
            width: 22px; height: 2px;
            background: var(--blue-deep);
            border-radius: 2px;
            transition: var(--transition);
        }

        /* ============================================
           PAGE HERO BANNER (inner pages)
        ============================================ */
        .page-hero {
            background: var(--blue-deep);
            padding: 4.5rem 0 4rem;
            position: relative;
            overflow: hidden;
        }
        .page-hero::after {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(135deg, transparent 50%, rgba(36,113,163,0.15) 100%);
            pointer-events: none;
        }
        .page-hero-content { position: relative; z-index: 1; }
        .page-hero .section-tag { color: rgba(255,255,255,0.45); }
        .page-hero h1 { color: var(--white); font-size: clamp(2rem,4.5vw,3.5rem); font-weight: 400; }
        .page-hero p  { color: rgba(255,255,255,0.65); max-width: 560px; margin-top: 0.85rem; font-size: 1rem; line-height: 1.75; }
        .breadcrumb {
            display: flex; gap: 0.5rem; align-items: center;
            font-size: 0.78rem; color: rgba(255,255,255,0.4);
            margin-bottom: 1.5rem; list-style: none;
        }
        .breadcrumb a { color: rgba(255,255,255,0.5); }
        .breadcrumb a:hover { color: rgba(255,255,255,0.85); }
        .breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; opacity: 0.4; }

        /* ============================================
           BUTTONS
        ============================================ */
        .btn {
            display: inline-flex;
            align-items: center; gap: 0.4rem;
            padding: 0.8rem 1.85rem;
            border-radius: 5px;
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.01em;
            transition: var(--transition);
            border: none; cursor: pointer;
            font-family: var(--font-body);
            white-space: nowrap;
        }
        .btn-primary { background: var(--blue-deep); color: var(--white); }
        .btn-primary:hover { background: var(--blue-mid); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,37,64,0.25); }
        .btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
        .btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.7); }
        .btn-outline-dark { background: transparent; color: var(--blue-deep); border: 1.5px solid var(--blue-deep); }
        .btn-outline-dark:hover { background: var(--blue-deep); color: var(--white); }
        .btn-white { background: var(--white); color: var(--blue-deep); }
        .btn-white:hover { background: var(--off-white); transform: translateY(-1px); }
        .btn-lg { padding: 1rem 2.2rem; font-size: 0.95rem; }
        .btn-sm { padding: 0.55rem 1.25rem; font-size: 0.82rem; }

        /* ============================================
           SECTION DEFAULTS
        ============================================ */
        .section { padding: 5.5rem 0; }
        .section-alt  { background: var(--warm-white); }
        .section-dark { background: var(--blue-deep); color: var(--white); }

        .section-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--blue-bright);
            margin-bottom: 1rem;
        }
        .section-dark .section-tag { color: rgba(255,255,255,0.5); }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 400;
            color: var(--blue-deep);
            margin-bottom: 1rem;
        }
        .section-dark .section-title { color: var(--white); }

        .section-sub {
            font-size: 1rem;
            color: var(--text-light);
            max-width: 580px;
            line-height: 1.75;
        }
        .section-dark .section-sub { color: rgba(255,255,255,0.6); }
        .section-header-center { text-align: center; }
        .section-header-center .section-sub { margin: 0 auto; }

        /* ============================================
           GENERIC CARD
        ============================================ */
        .card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 2rem 1.75rem;
            transition: var(--transition);
            display: flex; flex-direction: column;
        }
        .card:hover { border-color: var(--blue-bright); box-shadow: var(--shadow-md); transform: translateY(-3px); }
        .card-icon {
            width: 44px; height: 44px;
            background: var(--blue-pale);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 1.25rem;
        }
        .card-icon svg { width: 20px; height: 20px; color: var(--blue-mid); }
        .card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 0.5rem; }
        .card p  { font-size: 0.875rem; color: var(--text-light); flex-grow: 1; margin-bottom: 1.25rem; line-height: 1.65; }
        .card-link { font-size: 0.83rem; font-weight: 600; color: var(--blue-bright); letter-spacing: 0.02em; }
        .card-link:hover { color: var(--blue-deep); }

        /* ============================================
           INFO BOXES
        ============================================ */
        .info-box {
            background: #FFF8E7;
            border-left: 3px solid #E6A817;
            padding: 1rem 1.25rem;
            border-radius: 0 6px 6px 0;
            margin-top: 1.5rem;
            font-size: 0.87rem;
            color: var(--text-mid);
        }
        .info-box.success { background: #EAF7F0; border-color: var(--teal); }
        .info-box.info    { background: var(--blue-pale); border-color: var(--blue-bright); }
        .info-box strong  { display: block; margin-bottom: 0.35rem; color: var(--text-dark); }

        /* ============================================
           ABOUT / VALUE LIST (reusable)
        ============================================ */
        .about-grid {
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 5rem;
            align-items: start;
        }
        .about-content p {
            color: var(--text-mid);
            line-height: 1.85;
            margin-bottom: 1.25rem;
            font-size: 0.975rem;
        }
        .value-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
        .value-item {
            display: flex; gap: 1rem; align-items: flex-start;
            padding: 1rem 1.25rem;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            transition: var(--transition);
        }
        .value-item:hover { border-color: var(--blue-bright); box-shadow: var(--shadow-sm); }
        .value-dot {
            width: 8px; height: 8px;
            background: var(--blue-bright);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 0.35rem;
        }
        .value-item strong { display: block; font-size: 0.9rem; color: var(--blue-deep); margin-bottom: 0.2rem; }
        .value-item p { margin: 0; font-size: 0.83rem; color: var(--text-light); }

        /* ============================================
           MISSION CARD (reusable)
        ============================================ */
        .mission-card {
            background: var(--blue-deep);
            color: var(--white);
            border-radius: 12px;
            padding: 2.5rem;
            position: sticky;
            top: 90px;
        }
        .mission-card h4 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--white);
            margin-bottom: 2rem;
        }
        .mission-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
        .mission-list li {
            display: flex; gap: 1.25rem; align-items: flex-start;
            padding: 1.25rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mission-list li:last-child { border-bottom: none; }
        .mission-num {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 300;
            color: rgba(255,255,255,0.25);
            line-height: 1;
            flex-shrink: 0;
            min-width: 2rem;
        }
        .mission-info strong { display: block; font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.95); margin-bottom: 0.25rem; }
        .mission-info p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

        /* ============================================
           CONDITIONS / TABS (reusable)
        ============================================ */
        .tab-buttons {
            display: flex; gap: 0; border-bottom: 2px solid var(--border);
            margin-bottom: 3rem;
        }
        .tab-button {
            padding: 0.9rem 2rem;
            background: none; border: none;
            font-family: var(--font-body);
            font-size: 0.875rem; font-weight: 500;
            color: var(--text-light);
            cursor: pointer;
            position: relative;
            transition: var(--transition);
            letter-spacing: 0.03em;
        }
        .tab-button::after {
            content: '';
            position: absolute; bottom: -2px; left: 0; right: 0;
            height: 2px; background: var(--blue-deep);
            transform: scaleX(0);
            transition: transform var(--transition);
        }
        .tab-button:hover { color: var(--blue-deep); }
        .tab-button.active { color: var(--blue-deep); font-weight: 600; }
        .tab-button.active::after { transform: scaleX(1); }
        .tab-pane { display: none; animation: fadeIn 0.4s ease; }
        .tab-pane.active { display: block; }

        .condition-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: start;
        }
        .condition-text h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; margin-bottom: 1rem; }
        .condition-text p  { color: var(--text-mid); line-height: 1.85; font-size: 0.95rem; margin-bottom: 1rem; }
        .condition-text h4 { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin: 1.5rem 0 0.75rem; }
        .symptom-list, .treatment-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
        .symptom-list li, .treatment-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
        .symptom-list li::before { content: ''; width: 5px; height: 5px; background: var(--blue-bright); border-radius: 50%; flex-shrink: 0; margin-top: 0.5rem; }

        .condition-visual { position: sticky; top: 90px; }
        .clinical-img-wrap { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; background: var(--off-white); box-shadow: var(--shadow-md); }
        .clinical-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .clinical-img-wrap:hover img { transform: scale(1.03); }
        .visual-caption { margin-top: 1rem; padding: 0.85rem 1rem; background: var(--warm-white); border-radius: 6px; font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

        /* ============================================
           RESOURCES GRID (reusable)
        ============================================ */
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            margin-top: 3rem;
        }
        .resource-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 2rem 1.75rem;
            transition: var(--transition);
            display: flex; flex-direction: column;
        }
        .resource-card:hover { border-color: var(--blue-bright); box-shadow: var(--shadow-md); transform: translateY(-3px); }
        .resource-icon { width: 44px; height: 44px; background: var(--blue-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
        .resource-icon svg { width: 20px; height: 20px; color: var(--blue-mid); }
        .resource-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 0.6rem; }
        .resource-card p  { font-size: 0.875rem; color: var(--text-light); flex-grow: 1; margin-bottom: 1.25rem; line-height: 1.65; }

        /* ============================================
           RESEARCH (reusable)
        ============================================ */
        .research-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
        .focus-items { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: 8px; overflow: hidden; }
        .focus-item { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.5rem; background: var(--white); transition: var(--transition); }
        .focus-item:hover { background: var(--warm-white); }
        .focus-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: var(--blue-bright); opacity: 0.5; flex-shrink: 0; min-width: 2rem; }
        .focus-item h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
        .focus-item p  { font-size: 0.85rem; color: var(--text-light); margin: 0; line-height: 1.6; }

        .research-panel { background: var(--warm-white); border: 1px solid var(--border); border-radius: 12px; padding: 2.25rem; position: sticky; top: 90px; }
        .research-panel h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; margin-bottom: 1.75rem; }
        .progress-item { margin-bottom: 1.5rem; }
        .progress-header { display: flex; justify-content: space-between; font-size: 0.83rem; margin-bottom: 0.5rem; }
        .progress-pct { font-weight: 600; color: var(--blue-deep); }
        .progress-bar { height: 5px; background: var(--off-white); border-radius: 10px; overflow: hidden; }
        .progress-fill { height: 100%; background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright)); border-radius: 10px; }
        .panel-note { font-size: 0.8rem; color: var(--text-light); font-style: italic; line-height: 1.6; margin: 0; }

        /* ============================================
           STATS BAR (reusable)
        ============================================ */
        .stats-bar { background: var(--white); border-bottom: 1px solid var(--border); }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
        .stat-item { padding: 1.75rem 1.5rem; text-align: center; border-right: 1px solid var(--border); }
        .stat-item:last-child { border-right: none; }
        .stat-value { font-family: var(--font-display); font-size: 2.6rem; font-weight: 500; color: var(--blue-deep); line-height: 1; }
        .stat-label { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.4rem; }

        /* ============================================
           PATIENT STORIES SLIDER (reusable)
        ============================================ */
        #storiesSlider {
            position: relative;
            margin-top: 3.5rem;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(10,37,64,0.12);
        }
        .pstory-slide { display: none; }
        .pstory-inner { display: grid; grid-template-columns: 1fr 1fr; height: 280px; align-items: stretch; }
        .pstory-img-wrap { position: relative; overflow: hidden; }
        .pstory-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
        .pstory-img-overlay { position: absolute; inset: 0; }
        .pstory-badge { position: absolute; top: 1.25rem; left: 1.25rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: white; padding: 0.3rem 0.85rem; border-radius: 20px; backdrop-filter: blur(4px); }
        .pstory-content { padding: 1.75rem 2rem; display: flex; flex-direction: column; justify-content: center; }
        .pstory-quote-mark { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.8rem; color: rgba(255,255,255,0.15); line-height: 0.8; margin-bottom: 0.75rem; }
        .pstory-quote { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 0.97rem; color: rgba(255,255,255,0.9); line-height: 1.75; font-style: italic; margin-bottom: 1rem; flex-grow: 1; }
        .pstory-author { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 0.85rem; }
        .pstory-author-name { font-weight: 600; font-size: 0.95rem; color: white; margin-bottom: 0.2rem; }
        .pstory-author-meta { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
        #psPrev, #psNext { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; backdrop-filter: blur(4px); transition: background 0.3s; z-index: 10; }
        #psPrev { left: 1rem; }
        #psNext { right: 1rem; }
        #psPrev:hover, #psNext:hover { background: rgba(255,255,255,0.28); }
        #psCounter { position: absolute; bottom: 1rem; right: 1.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; z-index: 10; }

        /* ============================================
           CTA SECTION
        ============================================ */
        .cta-section { background: var(--blue-deep); padding: 6rem 0; text-align: center; }
        .cta-section h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.2rem); font-weight: 400; color: var(--white); margin-bottom: 1rem; }
        .cta-section p  { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.75; }
        .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

        /* ============================================
           FOOTER
        ============================================ */
        .footer { background: #060F1A; color: rgba(255,255,255,0.65); padding: 5rem 0 2.5rem; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3.5rem; margin-bottom: 3.5rem; }
        .footer-brand { margin-bottom: 1.25rem; }
        .footer-logo-wrap { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
        .footer-logo-mark { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .footer-logo-mark svg { width: 20px; height: 20px; }
        .footer-logo-name { font-family: var(--font-display); font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.2; }
        .footer-brand p { font-size: 0.83rem; line-height: 1.8; }
        .social-links { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
        .social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); color: rgba(255,255,255,0.5); }
        .social-links a:hover { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
        .social-links svg { width: 15px; height: 15px; fill: currentColor; }
        .footer-col h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
        .footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
        .footer-col ul a:hover { color: rgba(255,255,255,0.9); }
        .contact-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; margin-bottom: 0.75rem; }
        .contact-item svg { width: 14px; height: 14px; opacity: 0.4; flex-shrink: 0; margin-top: 0.15rem; }
        .contact-item a { color: rgba(255,255,255,0.55); }
        .contact-item a:hover { color: rgba(255,255,255,0.9); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
        .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
        .footer-bottom a { color: rgba(255,255,255,0.3); }
        .footer-bottom a:hover { color: rgba(255,255,255,0.7); }

        /* ============================================
           ANIMATIONS
        ============================================ */
        @keyframes fadeIn  { from { opacity: 0; }                             to { opacity: 1; } }
        @keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        .anim-fade-in  { animation: fadeIn  0.6s ease forwards; }
        .anim-slide-up { animation: slideUp 0.7s ease forwards; }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 992px) {
            .nav-menu { display: none; }
            .nav-menu.open {
                display: flex; flex-direction: column;
                position: absolute; top: 100%; left: 0; right: 0;
                background: var(--white);
                border-top: 1px solid var(--border);
                padding: 1rem;
                box-shadow: var(--shadow-lg);
                gap: 0.25rem;
                z-index: 999;
            }
            .nav-menu.open .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 1rem; background: transparent; }
            .mobile-toggle { display: flex; }
            .navbar { position: relative; }
            .nav-wrapper { position: relative; }
            .about-grid, .condition-content, .research-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .mission-card, .condition-visual, .research-panel { position: static; }
            .resources-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .stat-item:nth-child(2) { border-right: none; }
            .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
            .stat-item { border-top: 1px solid var(--border); }
            .stat-item:first-child, .stat-item:nth-child(2) { border-top: none; }
        }

        @media (max-width: 768px) {
            .pstory-inner { grid-template-columns: 1fr !important; height: auto !important; }
            .pstory-img-wrap { height: 220px; }
            .pstory-img-wrap img { height: 220px !important; object-position: center 20% !important; }
            .pstory-content { padding: 1.25rem !important; }
            .pstory-quote { font-size: 0.9rem !important; margin-bottom: 1rem !important; }
            #psPrev { left: 0.4rem !important; width: 34px !important; height: 34px !important; top: 30% !important; }
            #psNext { right: 0.4rem !important; width: 34px !important; height: 34px !important; top: 30% !important; }
        }

        @media (max-width: 640px) {
            .container { padding: 0 1.25rem; }
            .section { padding: 3.5rem 0; }
            .resources-grid, .footer-grid, .stats-grid { grid-template-columns: 1fr; }
            .stat-item { border-right: none; border-top: 1px solid var(--border); }
            .tab-buttons { overflow-x: auto; }
            .top-bar-left { gap: 1rem; font-size: 0.73rem; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .pstory-img-wrap img { height: 180px !important; }
            .page-hero { padding: 3rem 0 2.5rem; }
        }


/* Commig soon page  */
        /* ============================================
           RESET & VARIABLES
        ============================================ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --blue-deep:    #0A2540;
            --blue-mid:     #1A5276;
            --blue-bright:  #2471A3;
            --blue-pale:    #D6EAF8;
            --teal:         #148F77;
            --warm-white:   #F7F8FA;
            --off-white:    #EEF1F5;
            --text-dark:    #0A2540;
            --text-mid:     #2C3E50;
            --text-light:   #5D6D7E;
            --white:        #FFFFFF;
            --border:       rgba(10,37,64,0.1);

            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body:    'DM Sans', system-ui, sans-serif;

            --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
            --shadow-sm:  0 1px 3px rgba(10,37,64,0.08);
            --shadow-md:  0 4px 16px rgba(10,37,64,0.1);
            --shadow-lg:  0 12px 40px rgba(10,37,64,0.15);
        }

        html { scroll-behavior: smooth; font-size: 16px; }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background: var(--white);
            line-height: 1.65;
            overflow-x: hidden;
        }

        h1,h2,h3,h4,h5 {
            font-family: var(--font-display);
            line-height: 1.15;
            color: var(--blue-deep);
        }

        a { color: var(--blue-bright); text-decoration: none; transition: var(--transition); }
        a:hover { color: var(--blue-deep); }
        img { max-width: 100%; height: auto; display: block; }
        p { line-height: 1.75; }

        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ============================================
           TOP BAR
        ============================================ */
        .top-bar {
            background: var(--blue-deep);
            color: rgba(255,255,255,0.75);
            font-size: 0.8rem;
            letter-spacing: 0.03em;
            padding: 0.55rem 0;
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-bar-left { display: flex; gap: 2rem; }
        .top-bar-left span { display: flex; align-items: center; gap: 0.4rem; }
        .top-bar svg { opacity: 0.6; }
        .top-bar a { color: rgba(255,255,255,0.75); }
        .top-bar a:hover { color: var(--white); }
        .lang-btn {
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.85);
            padding: 0.2rem 0.75rem;
            border-radius: 3px;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            cursor: pointer;
            font-family: var(--font-body);
            transition: var(--transition);
        }
        .lang-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }

        /* ============================================
           NAVIGATION
        ============================================ */
        .navbar {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow var(--transition);
        }
        .navbar.scrolled { box-shadow: var(--shadow-md); }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.85rem 0;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            color: var(--blue-deep);
        }
        .logo-mark {
            width: 90px; height: 90px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }
        .logo-mark svg { width: 24px; height: 24px; }
        .logo-title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            line-height: 1.1;
            color: var(--blue-deep);
        }
        .logo-sub {
            font-size: 0.7rem;
            color: var(--text-light);
            letter-spacing: 0.04em;
            font-weight: 400;
        }

        .nav-menu { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
        .nav-menu > li > a {
            color: var(--text-mid);
            font-size: 0.875rem;
            font-weight: 500;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            transition: var(--transition);
            display: flex; align-items: center; gap: 0.25rem;
        }
        .nav-menu > li > a:hover,
        .nav-menu > li > a.active { color: var(--blue-deep); background: var(--warm-white); }
        .nav-menu .arrow { font-size: 0.6rem; opacity: 0.5; transition: transform var(--transition); }
        .dropdown { position: relative; }
        .dropdown:hover .arrow { transform: rotate(180deg); }
        .dropdown-menu {
            position: absolute; top: calc(100% + 0.5rem); left: 0;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            padding: 0.5rem;
            min-width: 210px;
            list-style: none;
            opacity: 0; visibility: hidden;
            transform: translateY(-6px);
            transition: var(--transition);
        }
        .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-menu a {
            display: block;
            padding: 0.55rem 0.85rem;
            font-size: 0.85rem;
            color: var(--text-mid);
            border-radius: 5px;
            transition: var(--transition);
        }
        .dropdown-menu a:hover { background: var(--warm-white); color: var(--blue-deep); }

        .btn-donate-nav {
            background: var(--blue-deep);
            color: var(--white) !important;
            padding: 0.55rem 1.35rem !important;
            border-radius: 5px;
            font-weight: 600 !important;
            letter-spacing: 0.02em;
            margin-left: 0.5rem;
        }
        .btn-donate-nav:hover { background: var(--blue-mid) !important; transform: none; }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.4rem;
        }
        .mobile-toggle span {
            width: 22px; height: 2px;
            background: var(--blue-deep);
            border-radius: 2px;
            transition: var(--transition);
        }

        /* ============================================
           PAGE HERO BANNER
        ============================================ */
        .page-hero {
            background: var(--blue-deep);
            padding: 4.5rem 0 4rem;
            position: relative;
            overflow: hidden;
        }
        .page-hero::after {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(135deg, transparent 50%, rgba(36,113,163,0.15) 100%);
            pointer-events: none;
        }
        .page-hero-content { position: relative; z-index: 1; }
        .page-hero .section-tag { color: rgba(255,255,255,0.45); }
        .page-hero h1 { color: var(--white); font-size: clamp(2rem,4.5vw,3.5rem); font-weight: 400; }
        .page-hero p  { color: rgba(255,255,255,0.65); max-width: 560px; margin-top: 0.85rem; font-size: 1rem; line-height: 1.75; }
        .breadcrumb {
            display: flex; gap: 0.5rem; align-items: center;
            font-size: 0.78rem; color: rgba(255,255,255,0.4);
            margin-bottom: 1.5rem; list-style: none;
        }
        .breadcrumb a { color: rgba(255,255,255,0.5); }
        .breadcrumb a:hover { color: rgba(255,255,255,0.85); }
        .breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; opacity: 0.4; }

        /* ============================================
           BUTTONS
        ============================================ */
        .btn {
            display: inline-flex;
            align-items: center; gap: 0.4rem;
            padding: 0.8rem 1.85rem;
            border-radius: 5px;
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.01em;
            transition: var(--transition);
            border: none; cursor: pointer;
            font-family: var(--font-body);
            white-space: nowrap;
        }
        .btn-primary { background: var(--blue-deep); color: var(--white); }
        .btn-primary:hover { background: var(--blue-mid); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,37,64,0.25); }
        .btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
        .btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.7); }
        .btn-outline-dark { background: transparent; color: var(--blue-deep); border: 1.5px solid var(--blue-deep); }
        .btn-outline-dark:hover { background: var(--blue-deep); color: var(--white); }
        .btn-lg { padding: 1rem 2.2rem; font-size: 0.95rem; }

        /* ============================================
           SECTION DEFAULTS
        ============================================ */
        .section { padding: 5.5rem 0; }

        .section-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--blue-bright);
            margin-bottom: 1rem;
        }
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 400;
            color: var(--blue-deep);
            margin-bottom: 1rem;
        }
        .section-sub {
            font-size: 1rem;
            color: var(--text-light);
            max-width: 580px;
            line-height: 1.75;
        }
        .section-header-center { text-align: center; }
        .section-header-center .section-sub { margin: 0 auto; }

        /* ============================================
           COMING SOON BLOCK
        ============================================ */
        .coming-soon-wrap {
            max-width: 640px;
            margin: 0 auto;
            text-align: center;
            padding: 3rem 2rem;
        }
        .coming-soon-icon {
            width: 72px; height: 72px;
            background: var(--blue-pale);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1.75rem;
        }
        .coming-soon-icon svg { width: 30px; height: 30px; color: var(--blue-mid); }
        .coming-soon-badge {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--teal);
            background: #EAF7F0;
            border: 1px solid rgba(20,143,119,0.25);
            padding: 0.4rem 1.1rem;
            border-radius: 20px;
            margin-bottom: 1.5rem;
        }
        .coming-soon-wrap h2 {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            font-weight: 400;
            margin-bottom: 1rem;
        }
        .coming-soon-wrap p {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        .coming-soon-notify {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        /* ============================================
           CTA SECTION
        ============================================ */
        .cta-section { background: var(--blue-deep); padding: 6rem 0; text-align: center; }
        .cta-section h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.2rem); font-weight: 400; color: var(--white); margin-bottom: 1rem; }
        .cta-section p  { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.75; }
        .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

        /* ============================================
           FOOTER
        ============================================ */
        .footer { background: #060F1A; color: rgba(255,255,255,0.65); padding: 5rem 0 2.5rem; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3.5rem; margin-bottom: 3.5rem; }
        .footer-brand { margin-bottom: 1.25rem; }
        .footer-logo-wrap { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
        .footer-logo-mark { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .footer-logo-mark svg { width: 20px; height: 20px; }
        .footer-logo-name { font-family: var(--font-display); font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.2; }
        .footer-brand p { font-size: 0.83rem; line-height: 1.8; }
        .social-links { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
        .social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); color: rgba(255,255,255,0.5); }
        .social-links a:hover { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
        .social-links svg { width: 15px; height: 15px; fill: currentColor; }
        .footer-col h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
        .footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
        .footer-col ul a:hover { color: rgba(255,255,255,0.9); }
        .contact-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; margin-bottom: 0.75rem; }
        .contact-item svg { width: 14px; height: 14px; opacity: 0.4; flex-shrink: 0; margin-top: 0.15rem; }
        .contact-item a { color: rgba(255,255,255,0.55); }
        .contact-item a:hover { color: rgba(255,255,255,0.9); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
        .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
        .footer-bottom a { color: rgba(255,255,255,0.3); }
        .footer-bottom a:hover { color: rgba(255,255,255,0.7); }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 992px) {
            .nav-menu { display: none; }
            .nav-menu.open {
                display: flex; flex-direction: column;
                position: absolute; top: 100%; left: 0; right: 0;
                background: var(--white);
                border-top: 1px solid var(--border);
                padding: 1rem;
                box-shadow: var(--shadow-lg);
                gap: 0.25rem;
                z-index: 999;
            }
            .nav-menu.open .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 1rem; background: transparent; }
            .mobile-toggle { display: flex; }
            .navbar { position: relative; }
            .nav-wrapper { position: relative; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
        }

        @media (max-width: 640px) {
            .container { padding: 0 1.25rem; }
            .section { padding: 3.5rem 0; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .page-hero { padding: 3rem 0 2.5rem; }
            .coming-soon-wrap { padding: 2rem 1rem; }
        }
</style>

/* icutoolkit */

 <style>
        /* ============================================
           RESET & VARIABLES
        ============================================ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --blue-deep:    #0A2540;
            --blue-mid:     #1A5276;
            --blue-bright:  #2471A3;
            --blue-pale:    #D6EAF8;
            --teal:         #148F77;
            --warm-white:   #F7F8FA;
            --off-white:    #EEF1F5;
            --text-dark:    #0A2540;
            --text-mid:     #2C3E50;
            --text-light:   #5D6D7E;
            --white:        #FFFFFF;
            --border:       rgba(10,37,64,0.1);

            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body:    'DM Sans', system-ui, sans-serif;

            --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
            --shadow-sm:  0 1px 3px rgba(10,37,64,0.08);
            --shadow-md:  0 4px 16px rgba(10,37,64,0.1);
            --shadow-lg:  0 12px 40px rgba(10,37,64,0.15);
        }

        html { scroll-behavior: smooth; font-size: 16px; }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background: var(--white);
            line-height: 1.65;
            overflow-x: hidden;
        }

        h1,h2,h3,h4,h5 {
            font-family: var(--font-display);
            line-height: 1.15;
            color: var(--blue-deep);
        }

        a { color: var(--blue-bright); text-decoration: none; transition: var(--transition); }
        a:hover { color: var(--blue-deep); }
        img { max-width: 100%; height: auto; display: block; }
        p { line-height: 1.75; }

        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ============================================
           TOP BAR
        ============================================ */
        .top-bar {
            background: var(--blue-deep);
            color: rgba(255,255,255,0.75);
            font-size: 0.8rem;
            letter-spacing: 0.03em;
            padding: 0.55rem 0;
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-bar-left { display: flex; gap: 2rem; }
        .top-bar-left span { display: flex; align-items: center; gap: 0.4rem; }
        .top-bar svg { opacity: 0.6; }
        .top-bar a { color: rgba(255,255,255,0.75); }
        .top-bar a:hover { color: var(--white); }
        .lang-btn {
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.85);
            padding: 0.2rem 0.75rem;
            border-radius: 3px;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            cursor: pointer;
            font-family: var(--font-body);
            transition: var(--transition);
        }
        .lang-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }

        /* ============================================
           NAVIGATION
        ============================================ */
        .navbar {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow var(--transition);
        }
        .navbar.scrolled { box-shadow: var(--shadow-md); }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.85rem 0;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            color: var(--blue-deep);
        }
        .logo-mark {
            width: 90px; height: 90px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }
        .logo-mark svg { width: 24px; height: 24px; }
        .logo-title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            line-height: 1.1;
            color: var(--blue-deep);
        }
        .logo-sub {
            font-size: 0.7rem;
            color: var(--text-light);
            letter-spacing: 0.04em;
            font-weight: 400;
        }

        .nav-menu { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
        .nav-menu > li > a {
            color: var(--text-mid);
            font-size: 0.875rem;
            font-weight: 500;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            transition: var(--transition);
            display: flex; align-items: center; gap: 0.25rem;
        }
        .nav-menu > li > a:hover,
        .nav-menu > li > a.active { color: var(--blue-deep); background: var(--warm-white); }
        .nav-menu .arrow { font-size: 0.6rem; opacity: 0.5; transition: transform var(--transition); }
        .dropdown { position: relative; }
        .dropdown:hover .arrow { transform: rotate(180deg); }
        .dropdown-menu {
            position: absolute; top: calc(100% + 0.5rem); left: 0;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            padding: 0.5rem;
            min-width: 210px;
            list-style: none;
            opacity: 0; visibility: hidden;
            transform: translateY(-6px);
            transition: var(--transition);
        }
        .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-menu a {
            display: block;
            padding: 0.55rem 0.85rem;
            font-size: 0.85rem;
            color: var(--text-mid);
            border-radius: 5px;
            transition: var(--transition);
        }
        .dropdown-menu a:hover { background: var(--warm-white); color: var(--blue-deep); }

        .btn-donate-nav {
            background: var(--blue-deep);
            color: var(--white) !important;
            padding: 0.55rem 1.35rem !important;
            border-radius: 5px;
            font-weight: 600 !important;
            letter-spacing: 0.02em;
            margin-left: 0.5rem;
        }
        .btn-donate-nav:hover { background: var(--blue-mid) !important; transform: none; }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.4rem;
        }
        .mobile-toggle span {
            width: 22px; height: 2px;
            background: var(--blue-deep);
            border-radius: 2px;
            transition: var(--transition);
        }

        /* ============================================
           PAGE HERO BANNER
        ============================================ */
        .page-hero {
            background: var(--blue-deep);
            padding: 4.5rem 0 4rem;
            position: relative;
            overflow: hidden;
        }
        .page-hero::after {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(135deg, transparent 50%, rgba(36,113,163,0.15) 100%);
            pointer-events: none;
        }
        .page-hero-content { position: relative; z-index: 1; }
        .page-hero .section-tag { color: rgba(255,255,255,0.45); }
        .page-hero h1 { color: var(--white); font-size: clamp(2rem,4.5vw,3.5rem); font-weight: 400; }
        .page-hero p  { color: rgba(255,255,255,0.65); max-width: 560px; margin-top: 0.85rem; font-size: 1rem; line-height: 1.75; }
        .breadcrumb {
            display: flex; gap: 0.5rem; align-items: center;
            font-size: 0.78rem; color: rgba(255,255,255,0.4);
            margin-bottom: 1.5rem; list-style: none;
        }
        .breadcrumb a { color: rgba(255,255,255,0.5); }
        .breadcrumb a:hover { color: rgba(255,255,255,0.85); }
        .breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; opacity: 0.4; }

        /* ============================================
           BUTTONS
        ============================================ */
        .btn {
            display: inline-flex;
            align-items: center; gap: 0.4rem;
            padding: 0.8rem 1.85rem;
            border-radius: 5px;
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.01em;
            transition: var(--transition);
            border: none; cursor: pointer;
            font-family: var(--font-body);
            white-space: nowrap;
        }
        .btn-primary { background: var(--blue-deep); color: var(--white); }
        .btn-primary:hover { background: var(--blue-mid); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,37,64,0.25); }
        .btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
        .btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.7); }
        .btn-outline-dark { background: transparent; color: var(--blue-deep); border: 1.5px solid var(--blue-deep); }
        .btn-outline-dark:hover { background: var(--blue-deep); color: var(--white); }
        .btn-lg { padding: 1rem 2.2rem; font-size: 0.95rem; }

        /* ============================================
           SECTION DEFAULTS
        ============================================ */
        .section { padding: 5.5rem 0; }
        .section-alt  { background: var(--warm-white); }

        .section-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--blue-bright);
            margin-bottom: 1rem;
        }
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 400;
            color: var(--blue-deep);
            margin-bottom: 1rem;
        }
        .section-sub {
            font-size: 1rem;
            color: var(--text-light);
            max-width: 640px;
            line-height: 1.75;
        }
        .section-header-center { text-align: center; }
        .section-header-center .section-sub { margin: 0 auto; }

        /* ============================================
           ICU TOOLKIT — CONTENT BLOCKS
        ============================================ */
        .toolkit-block { margin-bottom: 3.5rem; }
        .toolkit-block:last-child { margin-bottom: 0; }
        .toolkit-block h2 {
            font-size: 1.65rem;
            font-weight: 500;
            margin-bottom: 0.85rem;
        }
        .toolkit-block > p {
            color: var(--text-mid);
            font-size: 0.975rem;
            line-height: 1.85;
            margin-bottom: 1.25rem;
            max-width: 780px;
        }

        .role-grid, .item-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .role-item, .item-card {
            display: flex;
            gap: 0.85rem;
            align-items: flex-start;
            padding: 1.1rem 1.25rem;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            transition: var(--transition);
        }
        .role-item:hover, .item-card:hover { border-color: var(--blue-bright); box-shadow: var(--shadow-sm); }
        .role-dot, .item-dot {
            width: 8px; height: 8px;
            background: var(--blue-bright);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 0.4rem;
        }
        .role-item strong, .item-card strong { display: block; font-size: 0.92rem; color: var(--blue-deep); margin-bottom: 0.15rem; }
        .role-item p, .item-card p { margin: 0; font-size: 0.83rem; color: var(--text-light); line-height: 1.55; }

        .equip-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            margin-top: 1.25rem;
        }
        .equip-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.92rem;
            color: var(--text-mid);
            line-height: 1.6;
        }
        .equip-list li::before {
            content: '';
            width: 5px; height: 5px;
            background: var(--blue-bright);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 0.55rem;
        }

        .tip-category {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 1.5rem 1.65rem;
        }
        .tip-category h4 {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 0.9rem;
        }
        .tip-category ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
        .tip-category li { font-size: 0.88rem; color: var(--text-mid); }
        .tip-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .info-box {
            background: #FFF8E7;
            border-left: 3px solid #E6A817;
            padding: 1.1rem 1.35rem;
            border-radius: 0 6px 6px 0;
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-mid);
            max-width: 780px;
        }
        .info-box strong { display: block; margin-bottom: 0.35rem; color: var(--text-dark); }

        /* ============================================
           CTA SECTION
        ============================================ */
        .cta-section { background: var(--blue-deep); padding: 6rem 0; text-align: center; }
        .cta-section h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.2rem); font-weight: 400; color: var(--white); margin-bottom: 1rem; }
        .cta-section p  { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.75; }
        .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

        /* ============================================
           FOOTER
        ============================================ */
        .footer { background: #060F1A; color: rgba(255,255,255,0.65); padding: 5rem 0 2.5rem; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3.5rem; margin-bottom: 3.5rem; }
        .footer-brand { margin-bottom: 1.25rem; }
        .footer-logo-wrap { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
        .footer-logo-mark { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .footer-logo-mark svg { width: 20px; height: 20px; }
        .footer-logo-name { font-family: var(--font-display); font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.2; }
        .footer-brand p { font-size: 0.83rem; line-height: 1.8; }
        .social-links { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
        .social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); color: rgba(255,255,255,0.5); }
        .social-links a:hover { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
        .social-links svg { width: 15px; height: 15px; fill: currentColor; }
        .footer-col h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
        .footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
        .footer-col ul a:hover { color: rgba(255,255,255,0.9); }
        .contact-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; margin-bottom: 0.75rem; }
        .contact-item svg { width: 14px; height: 14px; opacity: 0.4; flex-shrink: 0; margin-top: 0.15rem; }
        .contact-item a { color: rgba(255,255,255,0.55); }
        .contact-item a:hover { color: rgba(255,255,255,0.9); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
        .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
        .footer-bottom a { color: rgba(255,255,255,0.3); }
        .footer-bottom a:hover { color: rgba(255,255,255,0.7); }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 992px) {
            .nav-menu { display: none; }
            .nav-menu.open {
                display: flex; flex-direction: column;
                position: absolute; top: 100%; left: 0; right: 0;
                background: var(--white);
                border-top: 1px solid var(--border);
                padding: 1rem;
                box-shadow: var(--shadow-lg);
                gap: 0.25rem;
                z-index: 999;
            }
            .nav-menu.open .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 1rem; background: transparent; }
            .mobile-toggle { display: flex; }
            .navbar { position: relative; }
            .nav-wrapper { position: relative; }
            .role-grid, .item-grid, .tip-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
        }

        @media (max-width: 640px) {
            .container { padding: 0 1.25rem; }
            .section { padding: 3.5rem 0; }
            .role-grid, .item-grid, .tip-grid, .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .page-hero { padding: 3rem 0 2.5rem; }
        }
    </style>

/* photo */
    <style>
        /* ============================================
           RESET & VARIABLES
        ============================================ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --blue-deep:    #0A2540;
            --blue-mid:     #1A5276;
            --blue-bright:  #2471A3;
            --blue-pale:    #D6EAF8;
            --teal:         #148F77;
            --warm-white:   #F7F8FA;
            --off-white:    #EEF1F5;
            --text-dark:    #0A2540;
            --text-mid:     #2C3E50;
            --text-light:   #5D6D7E;
            --white:        #FFFFFF;
            --border:       rgba(10,37,64,0.1);

            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body:    'DM Sans', system-ui, sans-serif;

            --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
            --shadow-sm:  0 1px 3px rgba(10,37,64,0.08);
            --shadow-md:  0 4px 16px rgba(10,37,64,0.1);
            --shadow-lg:  0 12px 40px rgba(10,37,64,0.15);
        }

        html { scroll-behavior: smooth; font-size: 16px; }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background: var(--white);
            line-height: 1.65;
            overflow-x: hidden;
        }

        h1,h2,h3,h4,h5 {
            font-family: var(--font-display);
            line-height: 1.15;
            color: var(--blue-deep);
        }

        a { color: var(--blue-bright); text-decoration: none; transition: var(--transition); }
        a:hover { color: var(--blue-deep); }
        img { max-width: 100%; height: auto; display: block; }
        p { line-height: 1.75; }

        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ============================================
           TOP BAR
        ============================================ */
        .top-bar {
            background: var(--blue-deep);
            color: rgba(255,255,255,0.75);
            font-size: 0.8rem;
            letter-spacing: 0.03em;
            padding: 0.55rem 0;
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-bar-left { display: flex; gap: 2rem; }
        .top-bar-left span { display: flex; align-items: center; gap: 0.4rem; }
        .top-bar svg { opacity: 0.6; }
        .top-bar a { color: rgba(255,255,255,0.75); }
        .top-bar a:hover { color: var(--white); }
        .lang-btn {
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.85);
            padding: 0.2rem 0.75rem;
            border-radius: 3px;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            cursor: pointer;
            font-family: var(--font-body);
            transition: var(--transition);
        }
        .lang-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }

        /* ============================================
           NAVIGATION
        ============================================ */
        .navbar {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow var(--transition);
        }
        .navbar.scrolled { box-shadow: var(--shadow-md); }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.85rem 0;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            color: var(--blue-deep);
        }
        /* Logo mark matches index.html — 90px circular image */
        .logo-mark {
            width: 90px; height: 90px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }
        .logo-mark svg { width: 24px; height: 24px; }
        .logo-title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            line-height: 1.1;
            color: var(--blue-deep);
        }
        .logo-sub {
            font-size: 0.7rem;
            color: var(--text-light);
            letter-spacing: 0.04em;
            font-weight: 400;
        }

        .nav-menu { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
        .nav-menu > li > a {
            color: var(--text-mid);
            font-size: 0.875rem;
            font-weight: 500;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            transition: var(--transition);
            display: flex; align-items: center; gap: 0.25rem;
        }
        .nav-menu > li > a:hover,
        .nav-menu > li > a.active { color: var(--blue-deep); background: var(--warm-white); }
        .nav-menu .arrow { font-size: 0.6rem; opacity: 0.5; transition: transform var(--transition); }
        .dropdown { position: relative; }
        .dropdown:hover .arrow { transform: rotate(180deg); }
        .dropdown-menu {
            position: absolute; top: calc(100% + 0.5rem); left: 0;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            padding: 0.5rem;
            min-width: 210px;
            list-style: none;
            opacity: 0; visibility: hidden;
            transform: translateY(-6px);
            transition: var(--transition);
        }
        .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-menu a {
            display: block;
            padding: 0.55rem 0.85rem;
            font-size: 0.85rem;
            color: var(--text-mid);
            border-radius: 5px;
            transition: var(--transition);
        }
        .dropdown-menu a:hover { background: var(--warm-white); color: var(--blue-deep); }

        .btn-donate-nav {
            background: var(--blue-deep);
            color: var(--white) !important;
            padding: 0.55rem 1.35rem !important;
            border-radius: 5px;
            font-weight: 600 !important;
            letter-spacing: 0.02em;
            margin-left: 0.5rem;
        }
        .btn-donate-nav:hover { background: var(--blue-mid) !important; transform: none; }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.4rem;
        }
        .mobile-toggle span {
            width: 22px; height: 2px;
            background: var(--blue-deep);
            border-radius: 2px;
            transition: var(--transition);
        }

        /* ============================================
           PAGE HERO BANNER (inner pages)
        ============================================ */
        .page-hero {
            background: var(--blue-deep);
            padding: 4.5rem 0 4rem;
            position: relative;
            overflow: hidden;
        }
        .page-hero::after {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(135deg, transparent 50%, rgba(36,113,163,0.15) 100%);
            pointer-events: none;
        }
        .page-hero-content { position: relative; z-index: 1; }
        .page-hero .section-tag { color: rgba(255,255,255,0.45); }
        .page-hero h1 { color: var(--white); font-size: clamp(2rem,4.5vw,3.5rem); font-weight: 400; }
        .page-hero p  { color: rgba(255,255,255,0.65); max-width: 560px; margin-top: 0.85rem; font-size: 1rem; line-height: 1.75; }
        .breadcrumb {
            display: flex; gap: 0.5rem; align-items: center;
            font-size: 0.78rem; color: rgba(255,255,255,0.4);
            margin-bottom: 1.5rem; list-style: none;
        }
        .breadcrumb a { color: rgba(255,255,255,0.5); }
        .breadcrumb a:hover { color: rgba(255,255,255,0.85); }
        .breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; opacity: 0.4; }

        /* ============================================
           BUTTONS
        ============================================ */
        .btn {
            display: inline-flex;
            align-items: center; gap: 0.4rem;
            padding: 0.8rem 1.85rem;
            border-radius: 5px;
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.01em;
            transition: var(--transition);
            border: none; cursor: pointer;
            font-family: var(--font-body);
            white-space: nowrap;
        }
        .btn-primary { background: var(--blue-deep); color: var(--white); }
        .btn-primary:hover { background: var(--blue-mid); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,37,64,0.25); }
        .btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
        .btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.7); }
        .btn-outline-dark { background: transparent; color: var(--blue-deep); border: 1.5px solid var(--blue-deep); }
        .btn-outline-dark:hover { background: var(--blue-deep); color: var(--white); }
        .btn-white { background: var(--white); color: var(--blue-deep); }
        .btn-white:hover { background: var(--off-white); transform: translateY(-1px); }
        .btn-lg { padding: 1rem 2.2rem; font-size: 0.95rem; }
        .btn-sm { padding: 0.55rem 1.25rem; font-size: 0.82rem; }

        /* ============================================
           SECTION DEFAULTS
        ============================================ */
        .section { padding: 5.5rem 0; }
        .section-alt  { background: var(--warm-white); }
        .section-dark { background: var(--blue-deep); color: var(--white); }

        .section-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--blue-bright);
            margin-bottom: 1rem;
        }
        .section-dark .section-tag { color: rgba(255,255,255,0.5); }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 400;
            color: var(--blue-deep);
            margin-bottom: 1rem;
        }
        .section-dark .section-title { color: var(--white); }

        .section-sub {
            font-size: 1rem;
            color: var(--text-light);
            max-width: 580px;
            line-height: 1.75;
        }
        .section-dark .section-sub { color: rgba(255,255,255,0.6); }
        .section-header-center { text-align: center; }
        .section-header-center .section-sub { margin: 0 auto; }

        /* ============================================
           GENERIC CARD
        ============================================ */
        .card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 2rem 1.75rem;
            transition: var(--transition);
            display: flex; flex-direction: column;
        }
        .card:hover { border-color: var(--blue-bright); box-shadow: var(--shadow-md); transform: translateY(-3px); }
        .card-icon {
            width: 44px; height: 44px;
            background: var(--blue-pale);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 1.25rem;
        }
        .card-icon svg { width: 20px; height: 20px; color: var(--blue-mid); }
        .card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 0.5rem; }
        .card p  { font-size: 0.875rem; color: var(--text-light); flex-grow: 1; margin-bottom: 1.25rem; line-height: 1.65; }
        .card-link { font-size: 0.83rem; font-weight: 600; color: var(--blue-bright); letter-spacing: 0.02em; }
        .card-link:hover { color: var(--blue-deep); }

        /* ============================================
           INFO BOXES
        ============================================ */
        .info-box {
            background: #FFF8E7;
            border-left: 3px solid #E6A817;
            padding: 1rem 1.25rem;
            border-radius: 0 6px 6px 0;
            margin-top: 1.5rem;
            font-size: 0.87rem;
            color: var(--text-mid);
        }
        .info-box.success { background: #EAF7F0; border-color: var(--teal); }
        .info-box.info    { background: var(--blue-pale); border-color: var(--blue-bright); }
        .info-box strong  { display: block; margin-bottom: 0.35rem; color: var(--text-dark); }

        /* ============================================
           ABOUT / VALUE LIST (reusable)
        ============================================ */
        .about-grid {
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 5rem;
            align-items: start;
        }
        .about-content p {
            color: var(--text-mid);
            line-height: 1.85;
            margin-bottom: 1.25rem;
            font-size: 0.975rem;
        }
        .value-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
        .value-item {
            display: flex; gap: 1rem; align-items: flex-start;
            padding: 1rem 1.25rem;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            transition: var(--transition);
        }
        .value-item:hover { border-color: var(--blue-bright); box-shadow: var(--shadow-sm); }
        .value-dot {
            width: 8px; height: 8px;
            background: var(--blue-bright);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 0.35rem;
        }
        .value-item strong { display: block; font-size: 0.9rem; color: var(--blue-deep); margin-bottom: 0.2rem; }
        .value-item p { margin: 0; font-size: 0.83rem; color: var(--text-light); }

        /* ============================================
           MISSION CARD (reusable)
        ============================================ */
        .mission-card {
            background: var(--blue-deep);
            color: var(--white);
            border-radius: 12px;
            padding: 2.5rem;
            position: sticky;
            top: 90px;
        }
        .mission-card h4 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--white);
            margin-bottom: 2rem;
        }
        .mission-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
        .mission-list li {
            display: flex; gap: 1.25rem; align-items: flex-start;
            padding: 1.25rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mission-list li:last-child { border-bottom: none; }
        .mission-num {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 300;
            color: rgba(255,255,255,0.25);
            line-height: 1;
            flex-shrink: 0;
            min-width: 2rem;
        }
        .mission-info strong { display: block; font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.95); margin-bottom: 0.25rem; }
        .mission-info p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

        /* ============================================
           CONDITIONS / TABS (reusable)
        ============================================ */
        .tab-buttons {
            display: flex; gap: 0; border-bottom: 2px solid var(--border);
            margin-bottom: 3rem;
        }
        .tab-button {
            padding: 0.9rem 2rem;
            background: none; border: none;
            font-family: var(--font-body);
            font-size: 0.875rem; font-weight: 500;
            color: var(--text-light);
            cursor: pointer;
            position: relative;
            transition: var(--transition);
            letter-spacing: 0.03em;
        }
        .tab-button::after {
            content: '';
            position: absolute; bottom: -2px; left: 0; right: 0;
            height: 2px; background: var(--blue-deep);
            transform: scaleX(0);
            transition: transform var(--transition);
        }
        .tab-button:hover { color: var(--blue-deep); }
        .tab-button.active { color: var(--blue-deep); font-weight: 600; }
        .tab-button.active::after { transform: scaleX(1); }
        .tab-pane { display: none; animation: fadeIn 0.4s ease; }
        .tab-pane.active { display: block; }

        .condition-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: start;
        }
        .condition-text h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; margin-bottom: 1rem; }
        .condition-text p  { color: var(--text-mid); line-height: 1.85; font-size: 0.95rem; margin-bottom: 1rem; }
        .condition-text h4 { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin: 1.5rem 0 0.75rem; }
        .symptom-list, .treatment-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
        .symptom-list li, .treatment-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
        .symptom-list li::before { content: ''; width: 5px; height: 5px; background: var(--blue-bright); border-radius: 50%; flex-shrink: 0; margin-top: 0.5rem; }

        .condition-visual { position: sticky; top: 90px; }
        .clinical-img-wrap { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; background: var(--off-white); box-shadow: var(--shadow-md); }
        .clinical-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .clinical-img-wrap:hover img { transform: scale(1.03); }
        .visual-caption { margin-top: 1rem; padding: 0.85rem 1rem; background: var(--warm-white); border-radius: 6px; font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

        /* ============================================
           RESOURCES GRID (reusable)
        ============================================ */
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            margin-top: 3rem;
        }
        .resource-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 2rem 1.75rem;
            transition: var(--transition);
            display: flex; flex-direction: column;
        }
        .resource-card:hover { border-color: var(--blue-bright); box-shadow: var(--shadow-md); transform: translateY(-3px); }
        .resource-icon { width: 44px; height: 44px; background: var(--blue-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
        .resource-icon svg { width: 20px; height: 20px; color: var(--blue-mid); }
        .resource-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 0.6rem; }
        .resource-card p  { font-size: 0.875rem; color: var(--text-light); flex-grow: 1; margin-bottom: 1.25rem; line-height: 1.65; }

        /* ============================================
           RESEARCH (reusable)
        ============================================ */
        .research-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
        .focus-items { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: 8px; overflow: hidden; }
        .focus-item { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.5rem; background: var(--white); transition: var(--transition); }
        .focus-item:hover { background: var(--warm-white); }
        .focus-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: var(--blue-bright); opacity: 0.5; flex-shrink: 0; min-width: 2rem; }
        .focus-item h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
        .focus-item p  { font-size: 0.85rem; color: var(--text-light); margin: 0; line-height: 1.6; }

        .research-panel { background: var(--warm-white); border: 1px solid var(--border); border-radius: 12px; padding: 2.25rem; position: sticky; top: 90px; }
        .research-panel h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; margin-bottom: 1.75rem; }
        .progress-item { margin-bottom: 1.5rem; }
        .progress-header { display: flex; justify-content: space-between; font-size: 0.83rem; margin-bottom: 0.5rem; }
        .progress-pct { font-weight: 600; color: var(--blue-deep); }
        .progress-bar { height: 5px; background: var(--off-white); border-radius: 10px; overflow: hidden; }
        .progress-fill { height: 100%; background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright)); border-radius: 10px; }
        .panel-note { font-size: 0.8rem; color: var(--text-light); font-style: italic; line-height: 1.6; margin: 0; }

        /* ============================================
           STATS BAR (reusable)
        ============================================ */
        .stats-bar { background: var(--white); border-bottom: 1px solid var(--border); }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
        .stat-item { padding: 1.75rem 1.5rem; text-align: center; border-right: 1px solid var(--border); }
        .stat-item:last-child { border-right: none; }
        .stat-value { font-family: var(--font-display); font-size: 2.6rem; font-weight: 500; color: var(--blue-deep); line-height: 1; }
        .stat-label { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.4rem; }

        /* ============================================
           PATIENT STORIES SLIDER (reusable)
        ============================================ */
        #storiesSlider {
            position: relative;
            margin-top: 3.5rem;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(10,37,64,0.12);
        }
        .pstory-slide { display: none; }
        .pstory-inner { display: grid; grid-template-columns: 1fr 1fr; height: 280px; align-items: stretch; }
        .pstory-img-wrap { position: relative; overflow: hidden; }
        .pstory-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
        .pstory-img-overlay { position: absolute; inset: 0; }
        .pstory-badge { position: absolute; top: 1.25rem; left: 1.25rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: white; padding: 0.3rem 0.85rem; border-radius: 20px; backdrop-filter: blur(4px); }
        .pstory-content { padding: 1.75rem 2rem; display: flex; flex-direction: column; justify-content: center; }
        .pstory-quote-mark { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.8rem; color: rgba(255,255,255,0.15); line-height: 0.8; margin-bottom: 0.75rem; }
        .pstory-quote { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 0.97rem; color: rgba(255,255,255,0.9); line-height: 1.75; font-style: italic; margin-bottom: 1rem; flex-grow: 1; }
        .pstory-author { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 0.85rem; }
        .pstory-author-name { font-weight: 600; font-size: 0.95rem; color: white; margin-bottom: 0.2rem; }
        .pstory-author-meta { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
        #psPrev, #psNext { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; backdrop-filter: blur(4px); transition: background 0.3s; z-index: 10; }
        #psPrev { left: 1rem; }
        #psNext { right: 1rem; }
        #psPrev:hover, #psNext:hover { background: rgba(255,255,255,0.28); }
        #psCounter { position: absolute; bottom: 1rem; right: 1.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; z-index: 10; }

        /* ============================================
           CTA SECTION
        ============================================ */
        .cta-section { background: var(--blue-deep); padding: 6rem 0; text-align: center; }
        .cta-section h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.2rem); font-weight: 400; color: var(--white); margin-bottom: 1rem; }
        .cta-section p  { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.75; }
        .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

        /* ============================================
           FOOTER
        ============================================ */
        .footer { background: #060F1A; color: rgba(255,255,255,0.65); padding: 5rem 0 2.5rem; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3.5rem; margin-bottom: 3.5rem; }
        .footer-brand { margin-bottom: 1.25rem; }
        .footer-logo-wrap { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
        .footer-logo-mark { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .footer-logo-mark svg { width: 20px; height: 20px; }
        .footer-logo-name { font-family: var(--font-display); font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.2; }
        .footer-brand p { font-size: 0.83rem; line-height: 1.8; }
        .social-links { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
        .social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); color: rgba(255,255,255,0.5); }
        .social-links a:hover { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
        .social-links svg { width: 15px; height: 15px; fill: currentColor; }
        .footer-col h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
        .footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
        .footer-col ul a:hover { color: rgba(255,255,255,0.9); }
        .contact-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; margin-bottom: 0.75rem; }
        .contact-item svg { width: 14px; height: 14px; opacity: 0.4; flex-shrink: 0; margin-top: 0.15rem; }
        .contact-item a { color: rgba(255,255,255,0.55); }
        .contact-item a:hover { color: rgba(255,255,255,0.9); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
        .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
        .footer-bottom a { color: rgba(255,255,255,0.3); }
        .footer-bottom a:hover { color: rgba(255,255,255,0.7); }

        /* ============================================
           ANIMATIONS
        ============================================ */
        @keyframes fadeIn  { from { opacity: 0; }                             to { opacity: 1; } }
        @keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        .anim-fade-in  { animation: fadeIn  0.6s ease forwards; }
        .anim-slide-up { animation: slideUp 0.7s ease forwards; }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 992px) {
            .nav-menu { display: none; }
            .nav-menu.open {
                display: flex; flex-direction: column;
                position: absolute; top: 100%; left: 0; right: 0;
                background: var(--white);
                border-top: 1px solid var(--border);
                padding: 1rem;
                box-shadow: var(--shadow-lg);
                gap: 0.25rem;
                z-index: 999;
            }
            .nav-menu.open .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 1rem; background: transparent; }
            .mobile-toggle { display: flex; }
            .navbar { position: relative; }
            .nav-wrapper { position: relative; }
            .about-grid, .condition-content, .research-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .mission-card, .condition-visual, .research-panel { position: static; }
            .resources-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .stat-item:nth-child(2) { border-right: none; }
            .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
            .stat-item { border-top: 1px solid var(--border); }
            .stat-item:first-child, .stat-item:nth-child(2) { border-top: none; }
        }

        @media (max-width: 768px) {
            .pstory-inner { grid-template-columns: 1fr !important; height: auto !important; }
            .pstory-img-wrap { height: 220px; }
            .pstory-img-wrap img { height: 220px !important; object-position: center 20% !important; }
            .pstory-content { padding: 1.25rem !important; }
            .pstory-quote { font-size: 0.9rem !important; margin-bottom: 1rem !important; }
            #psPrev { left: 0.4rem !important; width: 34px !important; height: 34px !important; top: 30% !important; }
            #psNext { right: 0.4rem !important; width: 34px !important; height: 34px !important; top: 30% !important; }
        }

        @media (max-width: 640px) {
            .container { padding: 0 1.25rem; }
            .section { padding: 3.5rem 0; }
            .resources-grid, .footer-grid, .stats-grid { grid-template-columns: 1fr; }
            .stat-item { border-right: none; border-top: 1px solid var(--border); }
            .tab-buttons { overflow-x: auto; }
            .top-bar-left { gap: 1rem; font-size: 0.73rem; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .pstory-img-wrap img { height: 180px !important; }
            .page-hero { padding: 3rem 0 2.5rem; }
        }

        /* ============================================
           ② PAGE-SPECIFIC STYLES — add below this line
        ============================================ */

    </style>

/* Specialists */

    <style>
        /* ============================================
           RESET & VARIABLES
        ============================================ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --blue-deep:    #0A2540;
            --blue-mid:     #1A5276;
            --blue-bright:  #2471A3;
            --blue-pale:    #D6EAF8;
            --teal:         #148F77;
            --warm-white:   #F7F8FA;
            --off-white:    #EEF1F5;
            --text-dark:    #0A2540;
            --text-mid:     #2C3E50;
            --text-light:   #5D6D7E;
            --white:        #FFFFFF;
            --border:       rgba(10,37,64,0.1);

            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body:    'DM Sans', system-ui, sans-serif;

            --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
            --shadow-sm:  0 1px 3px rgba(10,37,64,0.08);
            --shadow-md:  0 4px 16px rgba(10,37,64,0.1);
            --shadow-lg:  0 12px 40px rgba(10,37,64,0.15);
        }

        html { scroll-behavior: smooth; font-size: 16px; }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background: var(--white);
            line-height: 1.65;
            overflow-x: hidden;
        }

        h1,h2,h3,h4,h5 {
            font-family: var(--font-display);
            line-height: 1.15;
            color: var(--blue-deep);
        }

        a { color: var(--blue-bright); text-decoration: none; transition: var(--transition); }
        a:hover { color: var(--blue-deep); }
        img { max-width: 100%; height: auto; display: block; }
        p { line-height: 1.75; }

        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ============================================
           TOP BAR
        ============================================ */
        .top-bar {
            background: var(--blue-deep);
            color: rgba(255,255,255,0.75);
            font-size: 0.8rem;
            letter-spacing: 0.03em;
            padding: 0.55rem 0;
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-bar-left { display: flex; gap: 2rem; }
        .top-bar-left span { display: flex; align-items: center; gap: 0.4rem; }
        .top-bar svg { opacity: 0.6; }
        .top-bar a { color: rgba(255,255,255,0.75); }
        .top-bar a:hover { color: var(--white); }
        .lang-btn {
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.85);
            padding: 0.2rem 0.75rem;
            border-radius: 3px;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            cursor: pointer;
            font-family: var(--font-body);
            transition: var(--transition);
        }
        .lang-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }

        /* ============================================
           NAVIGATION
        ============================================ */
        .navbar {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow var(--transition);
        }
        .navbar.scrolled { box-shadow: var(--shadow-md); }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.85rem 0;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            color: var(--blue-deep);
        }
        /* Logo mark matches index.html — 90px circular image */
        .logo-mark {
            width: 90px; height: 90px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }
        .logo-mark svg { width: 24px; height: 24px; }
        .logo-title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            line-height: 1.1;
            color: var(--blue-deep);
        }
        .logo-sub {
            font-size: 0.7rem;
            color: var(--text-light);
            letter-spacing: 0.04em;
            font-weight: 400;
        }

        .nav-menu { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
        .nav-menu > li > a {
            color: var(--text-mid);
            font-size: 0.875rem;
            font-weight: 500;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            transition: var(--transition);
            display: flex; align-items: center; gap: 0.25rem;
        }
        .nav-menu > li > a:hover,
        .nav-menu > li > a.active { color: var(--blue-deep); background: var(--warm-white); }
        .nav-menu .arrow { font-size: 0.6rem; opacity: 0.5; transition: transform var(--transition); }
        .dropdown { position: relative; }
        .dropdown:hover .arrow { transform: rotate(180deg); }
        .dropdown-menu {
            position: absolute; top: calc(100% + 0.5rem); left: 0;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            padding: 0.5rem;
            min-width: 210px;
            list-style: none;
            opacity: 0; visibility: hidden;
            transform: translateY(-6px);
            transition: var(--transition);
        }
        .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-menu a {
            display: block;
            padding: 0.55rem 0.85rem;
            font-size: 0.85rem;
            color: var(--text-mid);
            border-radius: 5px;
            transition: var(--transition);
        }
        .dropdown-menu a:hover { background: var(--warm-white); color: var(--blue-deep); }

        .btn-donate-nav {
            background: var(--blue-deep);
            color: var(--white) !important;
            padding: 0.55rem 1.35rem !important;
            border-radius: 5px;
            font-weight: 600 !important;
            letter-spacing: 0.02em;
            margin-left: 0.5rem;
        }
        .btn-donate-nav:hover { background: var(--blue-mid) !important; transform: none; }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.4rem;
        }
        .mobile-toggle span {
            width: 22px; height: 2px;
            background: var(--blue-deep);
            border-radius: 2px;
            transition: var(--transition);
        }

        /* ============================================
           PAGE HERO BANNER (inner pages)
        ============================================ */
        .page-hero {
            background: var(--blue-deep);
            padding: 4.5rem 0 4rem;
            position: relative;
            overflow: hidden;
        }
        .page-hero::after {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(135deg, transparent 50%, rgba(36,113,163,0.15) 100%);
            pointer-events: none;
        }
        .page-hero-content { position: relative; z-index: 1; }
        .page-hero .section-tag { color: rgba(255,255,255,0.45); }
        .page-hero h1 { color: var(--white); font-size: clamp(2rem,4.5vw,3.5rem); font-weight: 400; }
        .page-hero p  { color: rgba(255,255,255,0.65); max-width: 560px; margin-top: 0.85rem; font-size: 1rem; line-height: 1.75; }
        .breadcrumb {
            display: flex; gap: 0.5rem; align-items: center;
            font-size: 0.78rem; color: rgba(255,255,255,0.4);
            margin-bottom: 1.5rem; list-style: none;
        }
        .breadcrumb a { color: rgba(255,255,255,0.5); }
        .breadcrumb a:hover { color: rgba(255,255,255,0.85); }
        .breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; opacity: 0.4; }

        /* ============================================
           BUTTONS
        ============================================ */
        .btn {
            display: inline-flex;
            align-items: center; gap: 0.4rem;
            padding: 0.8rem 1.85rem;
            border-radius: 5px;
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.01em;
            transition: var(--transition);
            border: none; cursor: pointer;
            font-family: var(--font-body);
            white-space: nowrap;
        }
        .btn-primary { background: var(--blue-deep); color: var(--white); }
        .btn-primary:hover { background: var(--blue-mid); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,37,64,0.25); }
        .btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
        .btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.7); }
        .btn-outline-dark { background: transparent; color: var(--blue-deep); border: 1.5px solid var(--blue-deep); }
        .btn-outline-dark:hover { background: var(--blue-deep); color: var(--white); }
        .btn-white { background: var(--white); color: var(--blue-deep); }
        .btn-white:hover { background: var(--off-white); transform: translateY(-1px); }
        .btn-lg { padding: 1rem 2.2rem; font-size: 0.95rem; }
        .btn-sm { padding: 0.55rem 1.25rem; font-size: 0.82rem; }

        /* ============================================
           SECTION DEFAULTS
        ============================================ */
        .section { padding: 5.5rem 0; }
        .section-alt  { background: var(--warm-white); }
        .section-dark { background: var(--blue-deep); color: var(--white); }

        .section-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--blue-bright);
            margin-bottom: 1rem;
        }
        .section-dark .section-tag { color: rgba(255,255,255,0.5); }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 400;
            color: var(--blue-deep);
            margin-bottom: 1rem;
        }
        .section-dark .section-title { color: var(--white); }

        .section-sub {
            font-size: 1rem;
            color: var(--text-light);
            max-width: 580px;
            line-height: 1.75;
        }
        .section-dark .section-sub { color: rgba(255,255,255,0.6); }
        .section-header-center { text-align: center; }
        .section-header-center .section-sub { margin: 0 auto; }

        /* ============================================
           GENERIC CARD
        ============================================ */
        .card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 2rem 1.75rem;
            transition: var(--transition);
            display: flex; flex-direction: column;
        }
        .card:hover { border-color: var(--blue-bright); box-shadow: var(--shadow-md); transform: translateY(-3px); }
        .card-icon {
            width: 44px; height: 44px;
            background: var(--blue-pale);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 1.25rem;
        }
        .card-icon svg { width: 20px; height: 20px; color: var(--blue-mid); }
        .card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 0.5rem; }
        .card p  { font-size: 0.875rem; color: var(--text-light); flex-grow: 1; margin-bottom: 1.25rem; line-height: 1.65; }
        .card-link { font-size: 0.83rem; font-weight: 600; color: var(--blue-bright); letter-spacing: 0.02em; }
        .card-link:hover { color: var(--blue-deep); }

        /* ============================================
           INFO BOXES
        ============================================ */
        .info-box {
            background: #FFF8E7;
            border-left: 3px solid #E6A817;
            padding: 1rem 1.25rem;
            border-radius: 0 6px 6px 0;
            margin-top: 1.5rem;
            font-size: 0.87rem;
            color: var(--text-mid);
        }
        .info-box.success { background: #EAF7F0; border-color: var(--teal); }
        .info-box.info    { background: var(--blue-pale); border-color: var(--blue-bright); }
        .info-box strong  { display: block; margin-bottom: 0.35rem; color: var(--text-dark); }

        /* ============================================
           ABOUT / VALUE LIST (reusable)
        ============================================ */
        .about-grid {
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 5rem;
            align-items: start;
        }
        .about-content p {
            color: var(--text-mid);
            line-height: 1.85;
            margin-bottom: 1.25rem;
            font-size: 0.975rem;
        }
        .value-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
        .value-item {
            display: flex; gap: 1rem; align-items: flex-start;
            padding: 1rem 1.25rem;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            transition: var(--transition);
        }
        .value-item:hover { border-color: var(--blue-bright); box-shadow: var(--shadow-sm); }
        .value-dot {
            width: 8px; height: 8px;
            background: var(--blue-bright);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 0.35rem;
        }
        .value-item strong { display: block; font-size: 0.9rem; color: var(--blue-deep); margin-bottom: 0.2rem; }
        .value-item p { margin: 0; font-size: 0.83rem; color: var(--text-light); }

        /* ============================================
           MISSION CARD (reusable)
        ============================================ */
        .mission-card {
            background: var(--blue-deep);
            color: var(--white);
            border-radius: 12px;
            padding: 2.5rem;
            position: sticky;
            top: 90px;
        }
        .mission-card h4 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--white);
            margin-bottom: 2rem;
        }
        .mission-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
        .mission-list li {
            display: flex; gap: 1.25rem; align-items: flex-start;
            padding: 1.25rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mission-list li:last-child { border-bottom: none; }
        .mission-num {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 300;
            color: rgba(255,255,255,0.25);
            line-height: 1;
            flex-shrink: 0;
            min-width: 2rem;
        }
        .mission-info strong { display: block; font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.95); margin-bottom: 0.25rem; }
        .mission-info p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

        /* ============================================
           CONDITIONS / TABS (reusable)
        ============================================ */
        .tab-buttons {
            display: flex; gap: 0; border-bottom: 2px solid var(--border);
            margin-bottom: 3rem;
        }
        .tab-button {
            padding: 0.9rem 2rem;
            background: none; border: none;
            font-family: var(--font-body);
            font-size: 0.875rem; font-weight: 500;
            color: var(--text-light);
            cursor: pointer;
            position: relative;
            transition: var(--transition);
            letter-spacing: 0.03em;
        }
        .tab-button::after {
            content: '';
            position: absolute; bottom: -2px; left: 0; right: 0;
            height: 2px; background: var(--blue-deep);
            transform: scaleX(0);
            transition: transform var(--transition);
        }
        .tab-button:hover { color: var(--blue-deep); }
        .tab-button.active { color: var(--blue-deep); font-weight: 600; }
        .tab-button.active::after { transform: scaleX(1); }
        .tab-pane { display: none; animation: fadeIn 0.4s ease; }
        .tab-pane.active { display: block; }

        .condition-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: start;
        }
        .condition-text h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; margin-bottom: 1rem; }
        .condition-text p  { color: var(--text-mid); line-height: 1.85; font-size: 0.95rem; margin-bottom: 1rem; }
        .condition-text h4 { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin: 1.5rem 0 0.75rem; }
        .symptom-list, .treatment-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
        .symptom-list li, .treatment-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
        .symptom-list li::before { content: ''; width: 5px; height: 5px; background: var(--blue-bright); border-radius: 50%; flex-shrink: 0; margin-top: 0.5rem; }

        .condition-visual { position: sticky; top: 90px; }
        .clinical-img-wrap { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; background: var(--off-white); box-shadow: var(--shadow-md); }
        .clinical-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .clinical-img-wrap:hover img { transform: scale(1.03); }
        .visual-caption { margin-top: 1rem; padding: 0.85rem 1rem; background: var(--warm-white); border-radius: 6px; font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

        /* ============================================
           RESOURCES GRID (reusable)
        ============================================ */
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            margin-top: 3rem;
        }
        .resource-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 2rem 1.75rem;
            transition: var(--transition);
            display: flex; flex-direction: column;
        }
        .resource-card:hover { border-color: var(--blue-bright); box-shadow: var(--shadow-md); transform: translateY(-3px); }
        .resource-icon { width: 44px; height: 44px; background: var(--blue-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
        .resource-icon svg { width: 20px; height: 20px; color: var(--blue-mid); }
        .resource-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 0.6rem; }
        .resource-card p  { font-size: 0.875rem; color: var(--text-light); flex-grow: 1; margin-bottom: 1.25rem; line-height: 1.65; }

        /* ============================================
           RESEARCH (reusable)
        ============================================ */
        .research-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
        .focus-items { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: 8px; overflow: hidden; }
        .focus-item { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.5rem; background: var(--white); transition: var(--transition); }
        .focus-item:hover { background: var(--warm-white); }
        .focus-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: var(--blue-bright); opacity: 0.5; flex-shrink: 0; min-width: 2rem; }
        .focus-item h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
        .focus-item p  { font-size: 0.85rem; color: var(--text-light); margin: 0; line-height: 1.6; }

        .research-panel { background: var(--warm-white); border: 1px solid var(--border); border-radius: 12px; padding: 2.25rem; position: sticky; top: 90px; }
        .research-panel h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; margin-bottom: 1.75rem; }
        .progress-item { margin-bottom: 1.5rem; }
        .progress-header { display: flex; justify-content: space-between; font-size: 0.83rem; margin-bottom: 0.5rem; }
        .progress-pct { font-weight: 600; color: var(--blue-deep); }
        .progress-bar { height: 5px; background: var(--off-white); border-radius: 10px; overflow: hidden; }
        .progress-fill { height: 100%; background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright)); border-radius: 10px; }
        .panel-note { font-size: 0.8rem; color: var(--text-light); font-style: italic; line-height: 1.6; margin: 0; }

        /* ============================================
           STATS BAR (reusable)
        ============================================ */
        .stats-bar { background: var(--white); border-bottom: 1px solid var(--border); }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
        .stat-item { padding: 1.75rem 1.5rem; text-align: center; border-right: 1px solid var(--border); }
        .stat-item:last-child { border-right: none; }
        .stat-value { font-family: var(--font-display); font-size: 2.6rem; font-weight: 500; color: var(--blue-deep); line-height: 1; }
        .stat-label { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.4rem; }

        /* ============================================
           PATIENT STORIES SLIDER (reusable)
        ============================================ */
        #storiesSlider {
            position: relative;
            margin-top: 3.5rem;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(10,37,64,0.12);
        }
        .pstory-slide { display: none; }
        .pstory-inner { display: grid; grid-template-columns: 1fr 1fr; height: 280px; align-items: stretch; }
        .pstory-img-wrap { position: relative; overflow: hidden; }
        .pstory-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
        .pstory-img-overlay { position: absolute; inset: 0; }
        .pstory-badge { position: absolute; top: 1.25rem; left: 1.25rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: white; padding: 0.3rem 0.85rem; border-radius: 20px; backdrop-filter: blur(4px); }
        .pstory-content { padding: 1.75rem 2rem; display: flex; flex-direction: column; justify-content: center; }
        .pstory-quote-mark { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.8rem; color: rgba(255,255,255,0.15); line-height: 0.8; margin-bottom: 0.75rem; }
        .pstory-quote { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 0.97rem; color: rgba(255,255,255,0.9); line-height: 1.75; font-style: italic; margin-bottom: 1rem; flex-grow: 1; }
        .pstory-author { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 0.85rem; }
        .pstory-author-name { font-weight: 600; font-size: 0.95rem; color: white; margin-bottom: 0.2rem; }
        .pstory-author-meta { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
        #psPrev, #psNext { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; backdrop-filter: blur(4px); transition: background 0.3s; z-index: 10; }
        #psPrev { left: 1rem; }
        #psNext { right: 1rem; }
        #psPrev:hover, #psNext:hover { background: rgba(255,255,255,0.28); }
        #psCounter { position: absolute; bottom: 1rem; right: 1.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; z-index: 10; }

        /* ============================================
           CTA SECTION
        ============================================ */
        .cta-section { background: var(--blue-deep); padding: 6rem 0; text-align: center; }
        .cta-section h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.2rem); font-weight: 400; color: var(--white); margin-bottom: 1rem; }
        .cta-section p  { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.75; }
        .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

        /* ============================================
           FOOTER
        ============================================ */
        .footer { background: #060F1A; color: rgba(255,255,255,0.65); padding: 5rem 0 2.5rem; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3.5rem; margin-bottom: 3.5rem; }
        .footer-brand { margin-bottom: 1.25rem; }
        .footer-logo-wrap { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
        .footer-logo-mark { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .footer-logo-mark svg { width: 20px; height: 20px; }
        .footer-logo-name { font-family: var(--font-display); font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.2; }
        .footer-brand p { font-size: 0.83rem; line-height: 1.8; }
        .social-links { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
        .social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); color: rgba(255,255,255,0.5); }
        .social-links a:hover { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
        .social-links svg { width: 15px; height: 15px; fill: currentColor; }
        .footer-col h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
        .footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
        .footer-col ul a:hover { color: rgba(255,255,255,0.9); }
        .contact-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; margin-bottom: 0.75rem; }
        .contact-item svg { width: 14px; height: 14px; opacity: 0.4; flex-shrink: 0; margin-top: 0.15rem; }
        .contact-item a { color: rgba(255,255,255,0.55); }
        .contact-item a:hover { color: rgba(255,255,255,0.9); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
        .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
        .footer-bottom a { color: rgba(255,255,255,0.3); }
        .footer-bottom a:hover { color: rgba(255,255,255,0.7); }

        /* ============================================
           ANIMATIONS
        ============================================ */
        @keyframes fadeIn  { from { opacity: 0; }                             to { opacity: 1; } }
        @keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        .anim-fade-in  { animation: fadeIn  0.6s ease forwards; }
        .anim-slide-up { animation: slideUp 0.7s ease forwards; }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 992px) {
            .nav-menu { display: none; }
            .nav-menu.open {
                display: flex; flex-direction: column;
                position: absolute; top: 100%; left: 0; right: 0;
                background: var(--white);
                border-top: 1px solid var(--border);
                padding: 1rem;
                box-shadow: var(--shadow-lg);
                gap: 0.25rem;
                z-index: 999;
            }
            .nav-menu.open .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 1rem; background: transparent; }
            .mobile-toggle { display: flex; }
            .navbar { position: relative; }
            .nav-wrapper { position: relative; }
            .about-grid, .condition-content, .research-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .mission-card, .condition-visual, .research-panel { position: static; }
            .resources-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .stat-item:nth-child(2) { border-right: none; }
            .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
            .stat-item { border-top: 1px solid var(--border); }
            .stat-item:first-child, .stat-item:nth-child(2) { border-top: none; }
        }

        @media (max-width: 768px) {
            .pstory-inner { grid-template-columns: 1fr !important; height: auto !important; }
            .pstory-img-wrap { height: 220px; }
            .pstory-img-wrap img { height: 220px !important; object-position: center 20% !important; }
            .pstory-content { padding: 1.25rem !important; }
            .pstory-quote { font-size: 0.9rem !important; margin-bottom: 1rem !important; }
            #psPrev { left: 0.4rem !important; width: 34px !important; height: 34px !important; top: 30% !important; }
            #psNext { right: 0.4rem !important; width: 34px !important; height: 34px !important; top: 30% !important; }
        }

        @media (max-width: 640px) {
            .container { padding: 0 1.25rem; }
            .section { padding: 3.5rem 0; }
            .resources-grid, .footer-grid, .stats-grid { grid-template-columns: 1fr; }
            .stat-item { border-right: none; border-top: 1px solid var(--border); }
            .tab-buttons { overflow-x: auto; }
            .top-bar-left { gap: 1rem; font-size: 0.73rem; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .pstory-img-wrap img { height: 180px !important; }
            .page-hero { padding: 3rem 0 2.5rem; }
        }

        /* ============================================
           ② PAGE-SPECIFIC STYLES — add below this line
        ============================================ */

    </style>

/* Teams */

     <style>
        /* ============================================================
           BASE STYLES — shared design system
           ============================================================ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --blue-deep:    #0A2540;
            --blue-mid:     #1A5276;
            --blue-bright:  #2471A3;
            --blue-pale:    #D6EAF8;
            --teal:         #148F77;
            --warm-white:   #F7F8FA;
            --off-white:    #EEF1F5;
            --white:        #FFFFFF;
            --text-dark:    #0A2540;
            --text-mid:     #2C3E50;
            --text-light:   #5D6D7E;
            --gold:         #c8a96e;
            --border:       rgba(10,37,64,0.1);
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body:    'DM Sans', system-ui, sans-serif;
            --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
            --shadow-sm:    0 1px 3px rgba(10,37,64,0.08);
            --shadow-md:    0 4px 16px rgba(10,37,64,0.1);
            --shadow-lg:    0 12px 40px rgba(10,37,64,0.15);
        }

        html { scroll-behavior: smooth; font-size: 16px; }
        body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.65; overflow-x: hidden; }

        h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.15; color: var(--blue-deep); }
        h1 { font-size: clamp(2.2rem,5vw,3.8rem);  font-weight: 400; }
        h2 { font-size: clamp(1.8rem,3.5vw,3rem);  font-weight: 400; }
        h3 { font-size: 1.6rem;  font-weight: 500; }
        h4 { font-size: 1.2rem;  font-weight: 600; }

        a { color: var(--blue-bright); text-decoration: none; transition: var(--transition); }
        a:hover { color: var(--blue-deep); }
        img { max-width: 100%; height: auto; display: block; }
        p { line-height: 1.75; }

        /* Layout */
        .container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
        .section      { padding: 5.5rem 0; }
        .section-alt  { background: var(--warm-white); }
        .section-dark { background: var(--blue-deep); color: var(--white); }
        .center { text-align: center; }
        .center .section-sub { margin: 0 auto; }

        /* Section labels */
        .section-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 1rem; }
        .section-dark .section-tag { color: rgba(255,255,255,0.5); }
        .section-title { color: var(--blue-deep); margin-bottom: 1rem; }
        .section-dark .section-title { color: var(--white); }
        .section-sub { font-size: 1rem; color: var(--text-light); max-width: 580px; line-height: 1.75; }
        .section-dark .section-sub { color: rgba(255,255,255,0.6); }

        /* Buttons */
        .btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.8rem 1.85rem; border-radius: 5px; font-weight: 500; font-size: 0.9rem; transition: var(--transition); border: none; cursor: pointer; font-family: var(--font-body); white-space: nowrap; }
        .btn-primary { background: var(--blue-deep); color: var(--white); }
        .btn-primary:hover { background: var(--blue-mid); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,37,64,0.25); }
        .btn-ghost   { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
        .btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.7); }
        .btn-outline { background: transparent; color: var(--blue-deep); border: 1.5px solid var(--blue-deep); }
        .btn-outline:hover { background: var(--blue-deep); color: var(--white); }
        .btn-white   { background: var(--white); color: var(--blue-deep); }
        .btn-white:hover { background: var(--off-white); transform: translateY(-1px); }
        .btn-lg { padding: 1rem 2.2rem; font-size: 0.95rem; }
        .btn-sm { padding: 0.55rem 1.25rem; font-size: 0.82rem; }

        /* Top bar */
        .top-bar { background: var(--blue-deep); color: rgba(255,255,255,0.75); font-size: 0.8rem; letter-spacing: 0.03em; padding: 0.55rem 0; }
        .top-bar .container { display: flex; justify-content: space-between; align-items: center; }
        .top-bar-left { display: flex; gap: 2rem; }
        .top-bar-left span { display: flex; align-items: center; gap: 0.4rem; }
        .top-bar svg { opacity: 0.6; }
        .top-bar a { color: rgba(255,255,255,0.75); }
        .top-bar a:hover { color: var(--white); }
        .lang-btn { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); padding: 0.2rem 0.75rem; border-radius: 3px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; cursor: pointer; font-family: var(--font-body); transition: var(--transition); }
        .lang-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }

        /* Navbar */
        .navbar { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; transition: box-shadow var(--transition); }
        .navbar.scrolled { box-shadow: var(--shadow-md); }
        .nav-wrapper { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 0; }
        .logo { display: flex; align-items: center; gap: 0.85rem; color: var(--blue-deep); }
       .logo-mark {
            width: 90px; height: 90px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }
        .logo-mark svg { width: 24px; height: 24px; }
        .logo-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
        .logo-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.1; color: var(--blue-deep); }
        .logo-sub { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.04em; font-weight: 400; }
        .nav-menu { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
        .nav-menu > li > a { color: var(--text-mid); font-size: 0.875rem; font-weight: 500; padding: 0.5rem 0.75rem; border-radius: 4px; transition: var(--transition); display: flex; align-items: center; gap: 0.25rem; }
        .nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--blue-deep); background: var(--warm-white); }
        .nav-menu .arrow { font-size: 0.6rem; opacity: 0.5; transition: transform var(--transition); }
        .dropdown { position: relative; }
        .dropdown:hover .arrow { transform: rotate(180deg); }
        .dropdown-menu { position: absolute; top: calc(100% + 0.5rem); left: 0; background: var(--white); border: 1px solid var(--border); border-radius: 8px; box-shadow: var(--shadow-lg); padding: 0.5rem; min-width: 210px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: var(--transition); }
        .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-menu a { display: block; padding: 0.55rem 0.85rem; font-size: 0.85rem; color: var(--text-mid); border-radius: 5px; transition: var(--transition); }
        .dropdown-menu a:hover { background: var(--warm-white); color: var(--blue-deep); }
        .btn-donate-nav { background: var(--blue-deep); color: var(--white) !important; padding: 0.55rem 1.35rem !important; border-radius: 5px; font-weight: 600 !important; letter-spacing: 0.02em; margin-left: 0.5rem; transition: var(--transition); }
        .btn-donate-nav:hover { background: var(--blue-mid) !important; }
        .mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.4rem; }
        .mobile-toggle span { width: 22px; height: 2px; background: var(--blue-deep); border-radius: 2px; transition: var(--transition); }

        /* Page hero banner */
        .page-hero { background: var(--blue-deep); padding: 4.5rem 0 4rem; position: relative; overflow: hidden; text-align: center; }
        .page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(36,113,163,.45) 0%, transparent 70%), radial-gradient(ellipse at 20% 80%, rgba(74,159,212,.2) 0%, transparent 60%); }
        .page-hero::after  { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,.018) 39px, rgba(255,255,255,.018) 40px), repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,.018) 79px, rgba(255,255,255,.018) 80px); }
        .page-hero-content { position: relative; z-index: 1; }
        .page-hero .section-tag { color: rgba(255,255,255,0.45); }
        .page-hero h1 { color: var(--white); font-size: clamp(2rem,4.5vw,3.5rem); }
        .page-hero h1 em { font-style: italic; color: var(--gold); }
        .page-hero p  { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0.85rem auto 0; font-size: 1rem; line-height: 1.75; }
        .breadcrumb { display: flex; gap: 0.5rem; align-items: center; justify-content: center; font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; list-style: none; }
        .breadcrumb a { color: rgba(255,255,255,0.5); }
        .breadcrumb a:hover { color: rgba(255,255,255,0.85); }
        .breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; opacity: 0.4; }

        /* CTA section */
        .cta-section { background: var(--blue-deep); padding: 6rem 0; text-align: center; }
        .cta-section h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.2rem); font-weight: 400; color: var(--white); margin-bottom: 1rem; }
        .cta-section p  { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.75; }
        .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

        /* Footer */
        .footer { background: #060F1A; color: rgba(255,255,255,0.65); padding: 5rem 0 2.5rem; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3.5rem; margin-bottom: 3.5rem; }
        .footer-brand { margin-bottom: 1.25rem; }
        .footer-logo-wrap { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
        .footer-logo-mark { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .footer-logo-mark svg { width: 20px; height: 20px; }
        .footer-logo-name { font-family: var(--font-display); font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.2; }
        .footer-brand p { font-size: 0.83rem; line-height: 1.8; }
        .social-links { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
        .social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); color: rgba(255,255,255,0.5); }
        .social-links a:hover { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
        .social-links svg { width: 15px; height: 15px; fill: currentColor; }
        .footer-col h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
        .footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
        .footer-col ul a:hover { color: rgba(255,255,255,0.9); }
        .contact-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; margin-bottom: 0.75rem; }
        .contact-item svg { width: 14px; height: 14px; opacity: 0.4; flex-shrink: 0; margin-top: 0.15rem; }
        .contact-item a { color: rgba(255,255,255,0.55); }
        .contact-item a:hover { color: rgba(255,255,255,0.9); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
        .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
        .footer-bottom a { color: rgba(255,255,255,0.3); }
        .footer-bottom a:hover { color: rgba(255,255,255,0.7); }

        /* ── TEAM SECTION ── */
        .team-section { padding: 5.5rem 0 6rem; background: var(--warm-white); }

        .team-tabs { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
        .tab-btn { background: var(--white); border: 1.5px solid var(--border); border-radius: 30px; padding: 0.55rem 1.5rem; font-family: var(--font-body); font-weight: 500; font-size: 0.82rem; cursor: pointer; color: var(--text-light); transition: all 0.2s; letter-spacing: 0.02em; }
        .tab-btn:hover { border-color: var(--blue-bright); color: var(--blue-bright); }
        .tab-btn.active { background: var(--blue-deep); border-color: var(--blue-deep); color: var(--white); }

        .team-panel { display: none; animation: fadeUp 0.38s ease; }
        .team-panel.active { display: block; }
        @keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

        .category-desc { background: linear-gradient(135deg, var(--white), var(--blue-pale)); border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0; padding: 1rem 1.25rem; margin-bottom: 1.75rem; font-size: 0.875rem; color: var(--text-light); line-height: 1.8; font-weight: 300; }

        .section-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border); }

        /* ── MEMBER CARD ── */
        .members-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 2rem; }
        .members-grid .member-card { flex: 0 1 calc(50% - 6px); min-width: 280px; }
        .members-grid.grid-3 .member-card { flex: 0 1 calc(33.333% - 8px); min-width: 260px; }

        .member-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; display: flex; align-items: stretch; box-shadow: var(--shadow-sm); transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s; }
        .member-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-bright); }

        .card-photo { width: 100px; min-width: 100px; background: linear-gradient(155deg, var(--blue-deep) 0%, var(--blue-mid) 100%); position: relative; overflow: hidden; flex-shrink: 0; align-self: stretch; }
        .card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s ease; }
        .member-card:hover .card-photo img { transform: scale(1.06); }
        .card-photo::after { content: ''; position: absolute; top: 14px; right: 0; bottom: 14px; width: 2px; background: linear-gradient(180deg, var(--gold), rgba(36,113,163,0.4)); border-radius: 2px; }

        .card-initials { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: rgba(255,255,255,0.25); pointer-events: none; opacity: 0; transition: opacity 0.2s; }
        .card-initials.visible { opacity: 1; }

        .card-info { padding: 0.9rem 1rem; display: flex; flex-direction: column; justify-content: center; min-width: 0; flex: 1; gap: 3px; }
        .card-badge { display: inline-flex; align-items: center; font-size: 0.63rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; letter-spacing: 0.04em; text-transform: uppercase; width: fit-content; max-width: 100%; white-space: normal; word-break: break-word; line-height: 1.3; margin-bottom: 4px; }
        .badge-blue { background: var(--blue-pale); color: var(--blue-mid); }
        .badge-teal { background: #E8F8F5; color: #0e7a62; }
        .badge-gold { background: #FDF6E9; color: #8a5e1e; }
        .card-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--blue-deep); line-height: 1.2; }
        .card-credentials { font-size: 0.71rem; color: var(--text-light); font-style: italic; line-height: 1.3; }
        .card-institution { font-size: 0.68rem; color: #aab7c4; font-style: italic; margin-top: 2px; letter-spacing: 0.02em; }

        /* Responsive */
        @media (max-width: 992px) {
            .nav-menu { display: none; }
            .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); padding: 1rem; box-shadow: var(--shadow-lg); gap: 0.25rem; z-index: 999; }
            .nav-menu.open .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 1rem; background: transparent; }
            .mobile-toggle { display: flex; }
            .navbar { position: relative; }
            .nav-wrapper { position: relative; }
            .footer-grid { grid-template-columns: repeat(2,1fr); gap: 2rem; }
        }
        @media (max-width: 700px) {
            .members-grid .member-card,
            .members-grid.grid-3 .member-card { flex: 0 1 100%; min-width: 0; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }
        @media (max-width: 640px) {
            .container { padding: 0 1.25rem; }
            .section { padding: 3.5rem 0; }
            .top-bar-left { gap: 0.75rem; font-size: 0.73rem; }
            .page-hero { padding: 3rem 0 2.5rem; }
            .team-section { padding: 3rem 0 4rem; }
        }

        @keyframes fadeIn  { from { opacity: 0; }                        to { opacity: 1; } }
        @keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        .anim-fade-in  { animation: fadeIn  0.6s ease forwards; }
        .anim-slide-up { animation: slideUp 0.7s ease forwards; }
    </style>



    /* benefits */


    <style>
        /* ============================================
           RESET & VARIABLES
        ============================================ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --blue-deep:    #0A2540;
            --blue-mid:     #1A5276;
            --blue-bright:  #2471A3;
            --blue-pale:    #D6EAF8;
            --teal:         #148F77;
            --warm-white:   #F7F8FA;
            --off-white:    #EEF1F5;
            --text-dark:    #0A2540;
            --text-mid:     #2C3E50;
            --text-light:   #5D6D7E;
            --white:        #FFFFFF;
            --border:       rgba(10,37,64,0.1);

            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body:    'DM Sans', system-ui, sans-serif;

            --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
            --shadow-sm:  0 1px 3px rgba(10,37,64,0.08);
            --shadow-md:  0 4px 16px rgba(10,37,64,0.1);
            --shadow-lg:  0 12px 40px rgba(10,37,64,0.15);
        }

        html { scroll-behavior: smooth; font-size: 16px; }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background: var(--white);
            line-height: 1.65;
            overflow-x: hidden;
        }

        h1,h2,h3,h4,h5 {
            font-family: var(--font-display);
            line-height: 1.15;
            color: var(--blue-deep);
        }

        a { color: var(--blue-bright); text-decoration: none; transition: var(--transition); }
        a:hover { color: var(--blue-deep); }
        img { max-width: 100%; height: auto; display: block; }
        p { line-height: 1.75; }

        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ============================================
           TOP BAR
        ============================================ */
        .top-bar {
            background: var(--blue-deep);
            color: rgba(255,255,255,0.75);
            font-size: 0.8rem;
            letter-spacing: 0.03em;
            padding: 0.55rem 0;
        }
        .top-bar .container { display: flex; justify-content: space-between; align-items: center; }
        .top-bar-left { display: flex; gap: 2rem; }
        .top-bar-left span { display: flex; align-items: center; gap: 0.4rem; }
        .top-bar svg { opacity: 0.6; }
        .top-bar a { color: rgba(255,255,255,0.75); }
        .top-bar a:hover { color: var(--white); }
        .lang-btn {
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.85);
            padding: 0.2rem 0.75rem;
            border-radius: 3px;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            cursor: pointer;
            font-family: var(--font-body);
            transition: var(--transition);
        }
        .lang-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }

        /* ============================================
           NAVIGATION
        ============================================ */
        .navbar {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow var(--transition);
        }
        .navbar.scrolled { box-shadow: var(--shadow-md); }
        .nav-wrapper { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 0; }
        .logo { display: flex; align-items: center; gap: 0.85rem; color: var(--blue-deep); }
        .logo-mark { width: 90px; height: 90px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
        .logo-mark svg { width: 24px; height: 24px; }
        .logo-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.1; color: var(--blue-deep); }
        .logo-sub { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.04em; font-weight: 400; }

        .nav-menu { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
        .nav-menu > li > a {
            color: var(--text-mid);
            font-size: 0.875rem;
            font-weight: 500;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            transition: var(--transition);
            display: flex; align-items: center; gap: 0.25rem;
        }
        .nav-menu > li > a:hover,
        .nav-menu > li > a.active { color: var(--blue-deep); background: var(--warm-white); }
        .nav-menu .arrow { font-size: 0.6rem; opacity: 0.5; transition: transform var(--transition); }
        .dropdown { position: relative; }
        .dropdown:hover .arrow { transform: rotate(180deg); }
        .dropdown-menu {
            position: absolute; top: calc(100% + 0.5rem); left: 0;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            padding: 0.5rem;
            min-width: 210px;
            list-style: none;
            opacity: 0; visibility: hidden;
            transform: translateY(-6px);
            transition: var(--transition);
        }
        .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-menu a { display: block; padding: 0.55rem 0.85rem; font-size: 0.85rem; color: var(--text-mid); border-radius: 5px; transition: var(--transition); }
        .dropdown-menu a:hover { background: var(--warm-white); color: var(--blue-deep); }

        .btn-donate-nav {
            background: var(--blue-deep);
            color: var(--white) !important;
            padding: 0.55rem 1.35rem !important;
            border-radius: 5px;
            font-weight: 600 !important;
            letter-spacing: 0.02em;
            margin-left: 0.5rem;
        }
        .btn-donate-nav:hover { background: var(--blue-mid) !important; transform: none; }

        .mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.4rem; }
        .mobile-toggle span { width: 22px; height: 2px; background: var(--blue-deep); border-radius: 2px; transition: var(--transition); }

        /* ============================================
           PAGE HERO BANNER
        ============================================ */
        .page-hero { background: var(--blue-deep); padding: 4.5rem 0 4rem; position: relative; overflow: hidden; }
        .page-hero::after {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(135deg, transparent 50%, rgba(36,113,163,0.15) 100%);
            pointer-events: none;
        }
        .page-hero-content { position: relative; z-index: 1; }
        .page-hero .section-tag { color: rgba(255,255,255,0.45); }
        .page-hero h1 { color: var(--white); font-size: clamp(2rem,4.5vw,3.5rem); font-weight: 400; }
        .page-hero p  { color: rgba(255,255,255,0.65); max-width: 620px; margin-top: 0.85rem; font-size: 1rem; line-height: 1.75; }
        .breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; list-style: none; }
        .breadcrumb a { color: rgba(255,255,255,0.5); }
        .breadcrumb a:hover { color: rgba(255,255,255,0.85); }
        .breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; opacity: 0.4; }

        /* ============================================
           BUTTONS
        ============================================ */
        .btn {
            display: inline-flex; align-items: center; gap: 0.4rem;
            padding: 0.8rem 1.85rem; border-radius: 5px;
            font-weight: 500; font-size: 0.9rem; letter-spacing: 0.01em;
            transition: var(--transition); border: none; cursor: pointer;
            font-family: var(--font-body); white-space: nowrap;
        }
        .btn-primary { background: var(--blue-deep); color: var(--white); }
        .btn-primary:hover { background: var(--blue-mid); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,37,64,0.25); }
        .btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
        .btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.7); }
        .btn-outline-dark { background: transparent; color: var(--blue-deep); border: 1.5px solid var(--blue-deep); }
        .btn-outline-dark:hover { background: var(--blue-deep); color: var(--white); }
        .btn-lg { padding: 1rem 2.2rem; font-size: 0.95rem; }

        /* ============================================
           SECTION DEFAULTS
        ============================================ */
        .section { padding: 5.5rem 0; }
        .section-alt { background: var(--warm-white); }

        .section-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--blue-bright);
            margin-bottom: 1rem;
        }
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 400;
            color: var(--blue-deep);
            margin-bottom: 1rem;
        }
        .section-sub { font-size: 1rem; color: var(--text-light); max-width: 640px; line-height: 1.75; }
        .section-header-center { text-align: center; }
        .section-header-center .section-sub { margin: 0 auto; }

        /* ============================================
           STATUS BADGES
        ============================================ */
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.3rem 0.85rem;
            border-radius: 20px;
        }
        .status-active { background: #E8F8F0; color: #0D6B45; border: 1px solid #A8DFCA; }
        .status-progress { background: #FEF9E7; color: #B7770D; border: 1px solid #F5D98B; }
        .status-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: pulse 2s infinite; }
        @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

        /* ============================================
           BENEFITS PAGE BLOCKS
        ============================================ */
        .benefits-block { margin-bottom: 4.5rem; }
        .benefits-block:last-child { margin-bottom: 0; }
        .block-heading { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
        .block-heading h2 { font-size: 1.85rem; font-weight: 400; margin: 0; }
        .benefits-block > p.block-intro {
            color: var(--text-mid);
            font-size: 0.975rem;
            line-height: 1.85;
            max-width: 780px;
            margin-bottom: 1.75rem;
        }

        /* Hospital cards */
        .hospital-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            margin-bottom: 1.75rem;
        }
        .hospital-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.75rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .hospital-card::before {
            content: '';
            position: absolute; top: 0; left: 0; right: 0; height: 3px;
            background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright));
        }
        .hospital-card:hover { border-color: rgba(36,113,163,0.3); box-shadow: var(--shadow-md); }
        .hospital-num {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 300;
            color: var(--blue-bright);
            opacity: 0.5;
            margin-bottom: 0.5rem;
        }
        .hospital-card h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--blue-deep); line-height: 1.3; margin-bottom: 0.5rem; }
        .hospital-toggle {
            display: inline-flex; align-items: center; gap: 0.35rem;
            font-size: 0.8rem; font-weight: 600;
            color: var(--blue-bright); background: none; border: none;
            cursor: pointer; font-family: var(--font-body);
            padding: 0; margin-top: 0.75rem; letter-spacing: 0.02em;
            transition: color var(--transition);
        }
        .hospital-toggle:hover { color: var(--blue-deep); }
        .hospital-toggle .chevron { font-size: 0.6rem; transition: transform 0.3s ease; display: inline-block; }
        .hospital-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }
        .hospital-detail {
            font-size: 0.85rem; color: var(--text-mid); line-height: 1.7;
            overflow: hidden;
            max-height: 0; opacity: 0;
            transition: max-height 0.45s ease, opacity 0.35s ease, padding 0.35s ease, margin 0.35s ease;
            border-top: 1px solid transparent;
            padding-top: 0; margin-top: 0;
        }
        .hospital-detail.open {
            max-height: 900px; opacity: 1;
            padding-top: 1rem; margin-top: 0.75rem;
            border-top-color: var(--border);
        }
        .hospital-detail p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 0.85rem; }
        .hospital-detail p:last-child { margin-bottom: 0; }
        .hospital-detail h5 {
            font-family: var(--font-body);
            font-size: 0.72rem; font-weight: 600;
            letter-spacing: 0.08em; text-transform: uppercase;
            color: var(--text-light);
            margin: 1rem 0 0.6rem;
        }
        .hospital-detail h5:first-child { margin-top: 0; }
        .hospital-detail-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
        .hospital-detail-list li {
            display: flex; align-items: flex-start; gap: 0.6rem;
            font-size: 0.83rem; color: var(--text-mid); line-height: 1.6;
        }
        .hospital-detail-list li::before {
            content: '';
            width: 4px; height: 4px; background: var(--blue-bright);
            border-radius: 50%; flex-shrink: 0; margin-top: 0.55rem;
        }
        .hospital-detail-list strong { color: var(--blue-deep); font-weight: 600; }

        .in-progress-card {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            background: #FFFBF0;
            border: 1px solid #F5D98B;
            border-radius: 10px;
            padding: 1.25rem 1.5rem;
            margin-bottom: 1.25rem;
        }
        .in-progress-icon {
            width: 38px; height: 38px;
            background: #FEF3D6;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .in-progress-icon svg { width: 18px; height: 18px; color: #B7770D; }
        .in-progress-card strong { display: block; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.25rem; }
        .in-progress-card p { margin: 0; font-size: 0.87rem; color: var(--text-mid); }

        .flow-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border);
        }
        .flow-item:last-child { border-bottom: none; }
        .flow-dot {
            width: 8px; height: 8px;
            background: var(--blue-bright);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 0.5rem;
        }
        .flow-item p { margin: 0; font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }

        /* Outreach cards */
        .outreach-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
            margin-top: 0.5rem;
        }
        .outreach-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.85rem;
            display: flex;
            flex-direction: column;
        }
        .outreach-icon {
            width: 44px; height: 44px;
            background: var(--blue-pale);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 1.1rem;
        }
        .outreach-icon svg { width: 20px; height: 20px; color: var(--blue-mid); }
        .outreach-card h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; margin-bottom: 0.6rem; }
        .outreach-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; margin: 0; }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-top: 1.75rem;
            background: var(--warm-white);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
        }
        .process-step {
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
            padding: 1.5rem 1.75rem;
            border-bottom: 1px solid var(--border);
        }
        .process-step:last-child { border-bottom: none; }
        .process-num {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 300;
            color: var(--blue-bright);
            opacity: 0.55;
            flex-shrink: 0;
            min-width: 2rem;
        }
        .process-step strong { display: block; font-size: 0.95rem; color: var(--blue-deep); margin-bottom: 0.3rem; }
        .process-step p { margin: 0; font-size: 0.87rem; color: var(--text-light); line-height: 1.65; }

        /* Fellowship section */
        .thanks-banner {
            background: var(--blue-deep);
            border-radius: 12px;
            padding: 2rem 2.25rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .thanks-icon {
            width: 48px; height: 48px;
            background: rgba(255,255,255,0.12);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .thanks-icon svg { width: 22px; height: 22px; color: white; }
        .thanks-banner p { margin: 0; color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.65; }
        .thanks-banner strong { color: white; }

        .fellowship-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2.25rem;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 1.75rem;
            align-items: flex-start;
        }
        .fellowship-icon {
            width: 56px; height: 56px;
            background: var(--blue-pale);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .fellowship-icon svg { width: 26px; height: 26px; color: var(--blue-mid); }
        .fellowship-card h4 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; margin-bottom: 0.65rem; }
        .fellowship-card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 0.5rem; }
        .fellowship-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
        .fellowship-tag {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--blue-mid);
            background: var(--blue-pale);
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
        }

    </style>