        body {
            font-family: 'Noto Sans', sans-serif;
            background-color: #9fcfff;
            color: #1F2937;
        }
        .glass-panel {
            background: rgba(132, 237, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.4);
        }
        .glass-dark {
            background: rgba(31, 41, 55, 0.9);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .hero-bg {
            background: linear-gradient(rgba(31, 41, 55, 0.75), rgba(31, 41, 55, 0.9)), url('https://i.pinimg.com/1200x/bd/45/fd/bd45fd4d2db52191cd3b8ab8632466bb.jpg') no-repeat center center/cover;
        }
        .story-bg {
            background: linear-gradient(rgba(247, 249, 253, 0.9), rgba(247, 249, 253, 0.95)), url('https://i.pinimg.com/736x/2d/b3/b0/2db3b06d3cea500227665b6e3d8e3688.jpg') no-repeat center center/cover;
        }
        .stats-bg {
            background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
        }
        .hide-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .hide-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }


        /* ============================================================
   RESPONSIVE HAMBURGER MENU STYLES
   ============================================================ */

/* Hide desktop navigation on mobile */
@media (max-width: 767px) {
    header nav {
        display: none !important;
    }
}

/* Hamburger Trigger Button - Desktop hidden, Mobile visible */
.hamburger-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger-trigger span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: #1F2937;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger animation to X when open */
.hamburger-trigger.open-state span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-trigger.open-state span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-trigger.open-state span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Show hamburger on mobile */
@media (max-width: 767px) {
    .hamburger-trigger {
        display: flex;
    }
}

/* Mobile Menu Overlay */
#mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #1F2937;
    z-index: 1000;
    padding: 90px 30px 30px;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

/* When menu is visible */
#mobile-menu.mobile-visible {
    right: 0;
}

/* Hide mobile menu on desktop */
@media (min-width: 768px) {
    #mobile-menu {
        display: none !important;
    }
}

/* Mobile menu links */
#mobile-menu a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

#mobile-menu a:hover {
    color: #00C68D;
    padding-left: 8px;
}

#mobile-menu .mobile-cta-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    background: #00C68D;
    color: #1F2937;
    font-weight: 700;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

#mobile-menu .mobile-cta-btn:hover {
    background: #F6850C;
    color: #FFFFFF;
}

/* Mobile menu sub-links grid */
#mobile-menu .sub-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 12px;
}

#mobile-menu .sub-links-grid a {
    font-size: 0.75rem;
    color: #9CA3AF;
    padding: 10px 0;
    border-bottom: none;
    font-weight: 400;
}

#mobile-menu .sub-links-grid a:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

/* Menu header - close button area */
.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 20px;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
    color: #00C68D;
}

/* Backdrop overlay */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}