    /* ========== GLOBAL STYLES ========== */
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
     :root {
        --primary-color: #28B485;
        --primary-dark: #20897a;
        --secondary-color: #FFFF00;
        --secondary-dark: #FFC700;
        --text-dark: #1a1a1a;
        --text-light: #666;
        --bg-light: #f8f8f8;
        --bg-white: #ffffff;
        --border-color: #e0e0e0;
        --spacing-unit: 1rem;
    }
    
    html,
    body {
        overflow-x: hidden;
    }
    
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
        background-color: var(--bg-white);
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 var(--spacing-unit);
    }
    /* ========== HEADER & NAVIGATION ========== */
    
    .header {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        position: fixed;
        top: 1rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        border-radius: 48px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        width: 95%;
        max-width: 1300px;
        margin: 0;
    }
    
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.45rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .logo-section {
        flex-shrink: 0;
    }
    
    .logo {
        display: inline-block;
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .logo:hover {
        transform: scale(1.02);
    }
    
    .logo img {
        height: 42px;
        width: auto;
        display: block;
        object-fit: contain;
    }
    
    .nav-menu>ul {
        display: flex;
        list-style: none;
        gap: 2.2rem;
        line-height: 1;
    }
    
    .nav-menu>ul>li {
        position: relative;
    }
    
    .nav-menu a {
        text-decoration: none;
        color: #333;
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 0.2px;
        text-transform: none;
        position: relative;
        padding: 0.4rem 0;
        transition: color 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    
    .dropdown-menu {
        display: block !important;
        width: auto;
    }
    /* Hide mobile button by default */
    
    .mobile-only-btn {
        display: none;
    }
    
    .mobile-only {
        display: none;
    }
    
    .mobile-toggle {
        display: none;
    }
    
    .desktop-arrow {
        display: inline-block;
        font-size: 0.65rem;
        margin-left: 5px;
        vertical-align: middle;
        transition: transform 0.3s ease;
    }
    
    .dropdown:hover .desktop-arrow {
        transform: rotate(180deg);
    }
    
    .mobile-nav-toggle {
        display: none;
    }
    /* Desktop Dropdown Styles */
    
    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: white;
        min-width: 280px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 1000;
        list-style: none;
    }
    
    .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-menu {
        min-width: 250px;
        max-width: 320px;
    }
    
    .dropdown-menu li {
        width: 100%;
        display: block;
    }
    
    .dropdown-menu a {
        width: 100%;
        box-sizing: border-box;
        white-space: normal;
    }
    
    @media (max-width: 992px) {
        .header-container {
            position: relative;
            padding: 0.8rem 1rem;
        }
        .desktop-only {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            height: 0 !important;
            overflow: hidden !important;
        }
        .mobile-only-btn {
            display: block;
        }
        .mobile-only {
            display: block;
        }
        .header-right.desktop-only {
            display: none !important;
        }
        .mobile-nav-toggle {
            display: block;
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }
        .hamburger {
            display: block;
            width: 25px;
            height: 2px;
            background: var(--text-dark);
            position: relative;
            transition: all 0.3s ease;
        }
        .hamburger::before,
        .hamburger::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: inherit;
            left: 0;
            transition: all 0.3s ease;
        }
        .hamburger::before {
            top: -8px;
        }
        .hamburger::after {
            bottom: -8px;
        }
        .nav-menu.active~.mobile-nav-toggle .hamburger {
            background: transparent;
        }
        .nav-menu.active~.mobile-nav-toggle .hamburger::before,
        .nav-menu.active~.mobile-nav-toggle .hamburger::after {
            background: #000;
        }
        .nav-menu.active~.mobile-nav-toggle .hamburger::before {
            transform: rotate(45deg);
            top: 0;
        }
        .nav-menu.active~.mobile-nav-toggle .hamburger::after {
            transform: rotate(-45deg);
            bottom: 0;
        }
        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 0 25px;
            margin-bottom: 25px;
            border-bottom: 1px solid #f0f0f0;
        }
        .mobile-logo img {
            height: 60px;
        }
        .nav-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
            padding: 2.5rem 1.5rem;
            transition: all 0.4s cubic-bezier(0, 0, 0.2, 1);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            overflow-y: auto;
        }
        .nav-menu.active {
            display: block;
            right: 0;
        }
        .nav-menu>ul {
            flex-direction: column;
            gap: 0;
            margin: 0;
            padding: 0;
        }
        .nav-menu>ul>li {
            width: 100%;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: background 0.3s ease;
        }
        .nav-menu>ul>li>a {
            padding: 1.2rem 0.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.15rem;
            width: 100%;
            color: #333;
            font-weight: 700;
        }
        .nav-menu>ul>li>a:active {
            color: var(--primary-color);
        }
        .desktop-arrow {
            display: none;
        }
        .nav-text {
            order: 1;
        }
        .mobile-toggle {
            order: 2;
            display: inline-flex;
            width: 32px;
            height: 32px;
            background: rgba(40, 180, 133, 0.1);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 300;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        .dropdown.active .mobile-toggle {
            background: var(--primary-color);
            color: white;
            transform: rotate(45deg);
            /* Turns + into x */
        }
        .dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: #ffffff;
            min-width: 100%;
            display: block;
            border-left: 3px solid var(--primary-color);
            margin-left: 10px;
        }
        .dropdown.active .dropdown-menu {
            max-height: 1200px;
            padding: 0.5rem 0;
            margin-bottom: 1rem;
        }
        .mobile-only-btn {
            display: none;
        }
        .mobile-only-btn .contact-btn {
            width: 100%;
            text-align: center;
            justify-content: center;
            margin-top: 2rem;
            border-radius: 30px;
            padding: 1rem;
            background: var(--primary-color);
            color: white;
            box-shadow: 0 4px 15px rgba(40, 180, 133, 0.3);
        }
    }
    
    .dropdown-menu li {
        width: 100%;
        padding: 0 !important;
        border-bottom: none !important;
    }
    
    .dropdown-menu a {
        padding: 12px 25px !important;
        display: block !important;
        font-size: 0.95rem !important;
        text-transform: none !important;
        font-weight: 500 !important;
        color: #555 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.02) !important;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(40, 180, 133, 0.05);
        color: var(--primary-color) !important;
        padding-left: 30px !important;
    }
    
    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }
    
    .nav-menu a:hover {
        color: var(--primary-color);
    }
    
    .nav-menu a:hover::after {
        width: 100%;
    }
    
    .header-right {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .search-box {
        display: none;
    }
    
    .contact-btn {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: white;
        padding: 0.55rem 1.3rem;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        box-shadow: 0 4px 15px rgba(40, 180, 133, 0.2);
        transition: all 0.3s ease;
    }
    
    .contact-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(40, 180, 133, 0.3);
        filter: brightness(1.1);
    }
    /* ========== HERO SECTION ========== */
    
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../../images/Grassroot%20Football%20Players%20in%20Italy.png');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 14rem 2rem 16rem;
        margin-top: 0;
        position: relative;
        overflow: hidden;
        min-height: 85vh;
        display: flex;
        align-items: flex-end;
    }
    
    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../../images/Food%20Outreach.png');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        opacity: 0;
        animation: heroBgFade 14s ease-in-out infinite;
        z-index: 0;
    }
    
    @keyframes heroBgFade {
        0%,
        45% {
            opacity: 0;
        }
        50%,
        95% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }
    
    .hero::before {
        display: none;
    }
    
    .hero-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        max-width: 1300px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 3rem 0 1.25rem;
    }
    
    .hero-text {
        flex: 1;
        max-width: 900px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        color: white;
        margin-bottom: 0;
        line-height: 1.1;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -0.5px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }
    
    .hero-text p,
    .hero-buttons {
        display: none;
    }
    
    .hero-video {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 1rem;
        text-align: right;
        margin-bottom: 2rem;
    }
    
    .video-label {
        color: white;
        font-size: 0.95rem;
        font-weight: 700;
        max-width: 220px;
        line-height: 1.3;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    }
    
    .video-placeholder {
        width: 75px;
        height: 55px;
        background: var(--primary-color);
        border-radius: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }
    
    .video-placeholder:hover {
        transform: scale(1.1);
        background: var(--secondary-color);
    }
    
    .video-placeholder:hover polygon {
        fill: var(--text-dark);
    }
    
    .video-placeholder svg {
        width: 28px;
        height: 28px;
    }
    
    .video-placeholder svg text {
        display: none;
    }
    /* ========== STATISTICS SECTION ========== */
    
    .stats {
        background-color: var(--primary-color);
        padding: 3rem 2rem;
        color: white;
        position: relative;
        z-index: 10;
        margin: -8rem auto 0;
        max-width: 1300px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
    
    .stats-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }
    
    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 1.5rem;
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .stat-item:last-child {
        border-right: none;
    }
    
    .stat-number {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
        line-height: 1;
        color: var(--secondary-color);
    }
    
    .stat-label {
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.9;
        max-width: 250px;
    }
    
    .stat-label {
        font-size: 1rem;
        font-weight: 500;
        opacity: 0.95;
        max-width: 200px;
        margin: 0 auto;
        line-height: 1.3;
    }
    
    @media (max-width: 1024px) {
        .hero-text h1 {
            font-size: 2.5rem;
        }
        .stats {
            margin-top: -4rem;
        }
    }
    
    @media (max-width: 768px) {
        .stats {
            margin-top: -5rem;
        }
        .stats-container {
            grid-template-columns: 1fr;
        }
        .hero-text h1 {
            font-size: 2.2rem;
        }
        .stat-item {
            border-right: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        .hero-content {
            flex-direction: column;
            align-items: flex-start;
        }
        .hero-video {
            align-items: flex-start;
            margin-top: 2rem;
        }
    }
    
    .carousel-wrapper {
        position: relative;
        max-width: 1000px;
        margin: 0 auto 3rem;
        padding: 2.5rem 2rem;
        background: linear-gradient(to bottom, #ffffff, #f9fbf9);
        border-radius: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border-top: 4px solid var(--primary-color);
    }
    
    .carousel-container {
        position: relative;
    }
    
    .carousel-slide {
        display: none;
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        transform: scale(0.98);
    }
    
    .carousel-slide.active {
        display: block;
        opacity: 1;
        transform: scale(1);
    }
    
    .carousel-slide p {
        font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 500;
        font-size: 1.2rem;
        line-height: 1.6;
        color: #333;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        font-style: italic;
    }
    
    .carousel-slide p::before,
    .fact-item p::before {
        content: '“';
        display: block;
        font-family: Georgia, serif;
        font-size: 4.5rem;
        color: var(--primary-color);
        opacity: 0.15;
        height: 2.2rem;
        line-height: 4.5rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .carousel-slide p strong,
    .carousel-slide p em {
        color: var(--primary-color);
        font-weight: 700;
    }
    
    .carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: var(--primary-color);
        color: white;
        border: none;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        font-size: 1.4rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .carousel-nav:hover {
        background-color: var(--primary-dark);
        transform: translateY(-50%) scale(1.05);
    }
    
    .carousel-nav.prev {
        left: -20px;
    }
    
    .carousel-nav.next {
        right: -20px;
    }
    
    .carousel-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .carousel-header h2 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
        letter-spacing: -1px;
        text-transform: uppercase;
        font-weight: 800;
        position: relative;
        display: inline-block;
        padding-bottom: 0.5rem;
    }
    
    .carousel-header h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--primary-color);
        border-radius: 2px;
    }
    
    .facts-carousel .carousel-header h2 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
        letter-spacing: -1px;
        text-transform: uppercase;
        font-weight: 800;
        position: relative;
        display: inline-block;
        padding-bottom: 0.5rem;
    }
    
    .facts-carousel .carousel-header h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--primary-color);
        border-radius: 2px;
    }
    
    .carousel-header p {
        font-size: 1rem;
        color: var(--text-light);
        margin: 0 auto;
        max-width: 640px;
    }
    
    .facts-carousel h3 {
        display: none;
    }
    /* Carousel Pagination Dots */
    
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 1.5rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        padding: 0;
    }
    
    .dot.active {
        background-color: var(--primary-color);
        transform: scale(1.2);
    }
    
    @media (max-width: 768px) {
        .carousel-wrapper {
            padding: 2rem 1.25rem;
        }
        .carousel-header h2 {
            font-size: 2rem;
        }
        .carousel-slide p {
            font-size: 1rem;
            max-width: 100%;
        }
        .carousel-nav {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
        }
        .carousel-nav.prev {
            left: 5px;
        }
        .carousel-nav.next {
            right: 5px;
        }
    }
    /* ========== FEATURED PROGRAMS SECTION ========== */
    
    .featured-programs {
        padding: 5rem 2rem;
        background: linear-gradient(135deg, #f8fafb 0%, #f0f4f8 100%);
    }
    
    .featured-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
        animation: fadeInDown 0.6s ease-out;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--primary-color) 0%, #1a9b6f 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .section-header p {
        font-size: 1.1rem;
        color: var(--text-light);
        margin: 0;
    }
    
    .featured-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
        grid-auto-rows: 280px;
    }
    
    .featured-card {
        position: relative;
        overflow: hidden;
        border-radius: 0;
        box-shadow: 0 6px 20px rgba(40, 180, 133, 0.1);
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border: none;
        background-clip: padding-box;
    }
    
    .featured-image {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: flex-end;
        position: relative;
        transition: transform 0.4s ease;
        margin: 0;
    }
    
    .featured-card:hover .featured-image {
        transform: scale(1.05);
    }
    
    .featured-card:nth-child(2) {
        grid-column: span 2;
    }
    
    .featured-card:nth-child(5) {
        grid-column: span 2;
    }
    
    .featured-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 15px 40px rgba(40, 180, 133, 0.3);
    }
    
    .featured-overlay {
        width: 100%;
        padding: 2.5rem;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.95) 100%);
        color: white;
        transition: all 0.4s ease;
    }
    
    .featured-card:hover .featured-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.95) 100%);
    }
    
    .featured-category {
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--secondary-color);
        margin-bottom: 0.8rem;
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background: rgba(255, 215, 0, 0.1);
        border-radius: 4px;
    }
    
    .featured-card h3 {
        font-size: 1.6rem;
        margin: 0;
        line-height: 1.3;
        color: white;
        font-weight: 800;
        transition: color 0.3s ease;
    }
    
    .featured-card:hover h3 {
        color: var(--secondary-color);
    }
    
    @media (max-width: 1024px) {
        .featured-programs {
            padding: 4rem 1.5rem;
        }
        .section-header h2 {
            font-size: 2rem;
        }
        .featured-grid {
            grid-template-columns: repeat(2, 1fr);
            grid-auto-rows: 240px;
            gap: 2rem;
        }
        .featured-card:nth-child(1) {
            grid-column: span 2;
            grid-row: span 1;
        }
        .featured-card:nth-child(2) {
            grid-column: span 1;
        }
        .featured-card:nth-child(5) {
            grid-column: span 1;
        }
        .featured-card h3 {
            font-size: 1.4rem;
        }
    }
    
    @media (max-width: 768px) {
        .featured-programs {
            padding: 3rem 1rem;
        }
        .section-header h2 {
            font-size: 1.8rem;
        }
        .section-header p {
            font-size: 1rem;
        }
        .featured-grid {
            grid-template-columns: 1fr;
            grid-auto-rows: 280px;
            gap: 2rem;
        }
        .featured-card:nth-child(1) {
            grid-column: span 1;
            grid-row: span 1;
        }
        .featured-card:nth-child(2) {
            grid-column: span 1;
        }
        .featured-card:nth-child(5) {
            grid-column: span 1;
        }
        .featured-overlay {
            padding: 2rem;
        }
        .featured-card h3 {
            font-size: 1.3rem;
        }
        .featured-category {
            font-size: 0.75rem;
        }
    }
    
    @media (max-width: 480px) {
        .featured-grid {
            grid-auto-rows: 240px;
        }
        .featured-card {
            height: auto;
        }
        .featured-overlay {
            padding: 1rem;
        }
        .featured-card h3 {
            font-size: 1rem;
        }
        .featured-category {
            font-size: 0.75rem;
            margin-bottom: 0.25rem;
        }
    }
    /* ========== ABOUT SECTION ========== */
    
    .about {
        padding: 4rem 2rem;
        background-color: var(--bg-light);
    }
    
    .programs {
        padding: 4rem 2rem;
        background-color: #f7f8fb;
    }
    
    .programs .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .programs .section-header h2 {
        font-size: 2.8rem;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }
    
    .programs .section-header p {
        font-size: 1rem;
        color: var(--text-light);
    }
    
    .program-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .program-card {
        background: white;
        border-radius: 0;
        overflow: hidden;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        opacity: 0;
        transform: translateY(30px);
    }
    
    .program-card.visible {
        opacity: 1;
        transform: translateY(0);
        animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }
    
    .program-card.visible h3 {
        opacity: 1;
        animation: slideUpText 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s forwards;
    }
    
    .news-card.visible,
    .initiative-card.visible {
        opacity: 1;
        transform: translateY(0);
        animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }
    
    .initiative-card.visible h3,
    .initiative-card.visible p {
        opacity: 1;
    }
    
    .program-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 26px 55px rgba(0, 0, 0, 0.12);
    }
    
    .program-image {
        width: 100%;
        padding-top: 50%;
        background-size: cover;
        background-position: center;
    }
    
    .program-card h3 {
        padding: 1.2rem 1rem 1.4rem;
        margin: 0;
        font-size: 1rem;
        color: var(--text-dark);
        text-align: center;
        opacity: 0;
    }
    
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideUpText {
        from {
            opacity: 0;
            transform: translateY(12px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @media (max-width: 1024px) {
        .program-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .program-grid {
            grid-template-columns: 1fr;
        }
        .program-card.visible {
            animation: slideUp 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
        }
        .program-card.visible h3 {
            animation: slideUpText 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
        }
        .program-card:nth-child(1) {
            animation-delay: 0.05s;
        }
        .program-card:nth-child(1) h3 {
            animation-delay: 0.15s;
        }
        .program-card:nth-child(2) {
            animation-delay: 0.12s;
        }
        .program-card:nth-child(2) h3 {
            animation-delay: 0.22s;
        }
        .program-card:nth-child(3) {
            animation-delay: 0.19s;
        }
        .program-card:nth-child(3) h3 {
            animation-delay: 0.29s;
        }
        .program-card:nth-child(4) {
            animation-delay: 0.26s;
        }
        .program-card:nth-child(4) h3 {
            animation-delay: 0.36s;
        }
        .program-card:nth-child(5) {
            animation-delay: 0.33s;
        }
        .program-card:nth-child(5) h3 {
            animation-delay: 0.43s;
        }
        .program-card:nth-child(6) {
            animation-delay: 0.40s;
        }
        .program-card:nth-child(6) h3 {
            animation-delay: 0.50s;
        }
        .program-card:nth-child(7) {
            animation-delay: 0.47s;
        }
        .program-card:nth-child(7) h3 {
            animation-delay: 0.57s;
        }
        .program-card:nth-child(8) {
            animation-delay: 0.54s;
        }
        .program-card:nth-child(8) h3 {
            animation-delay: 0.64s;
        }
        .program-card:nth-child(9) {
            animation-delay: 0.61s;
        }
        .program-card:nth-child(9) h3 {
            animation-delay: 0.71s;
        }
        .program-card:nth-child(10) {
            animation-delay: 0.68s;
        }
        .program-card:nth-child(10) h3 {
            animation-delay: 0.78s;
        }
        .program-card:nth-child(11) {
            animation-delay: 0.75s;
        }
        .program-card:nth-child(11) h3 {
            animation-delay: 0.85s;
        }
        .program-card:nth-child(12) {
            animation-delay: 0.82s;
        }
        .program-card:nth-child(12) h3 {
            animation-delay: 0.92s;
        }
    }
    
    .about-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .about-content {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
        text-align: center;
    }
    
    .about-content p {
        font-size: 1.1rem;
        color: var(--text-light);
        margin-bottom: 1rem;
        line-height: 1.8;
        text-align: center;
    }
    
    .read-more-link {
        color: white;
        background-color: var(--primary-color);
        padding: 0.8rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
        margin-top: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(40, 180, 133, 0.2);
    }
    
    .read-more-link:hover {
        background-color: var(--primary-dark);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(40, 180, 133, 0.3);
    }
    
    .mission-vision {
        background: white;
        padding: 2rem;
        border-radius: 8px;
    }
    
    .mission-vision h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .mission-vision-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        align-items: stretch;
        padding: 0 1rem;
    }
    
    .mission-box {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin: 0;
        padding: 2rem;
        background: #ffffff;
        border-radius: 16px;
        border-left: 6px solid var(--primary-color);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    
    .mission-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
    }
    
    .mission-box h4 {
        color: #1d1d1d;
        margin-bottom: 1rem;
        font-size: 1.35rem;
    }
    
    .mission-box p {
        color: #555;
        line-height: 1.75;
        margin: 0;
    }
    /* ========== ABOUT FOUNDER SECTION ========== */
    
    .about-founder {
        padding: 5rem 2rem;
        background-color: var(--bg-white);
    }
    
    .about-founder-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .about-founder-content {
        animation: fadeInLeft 0.6s ease-out;
        text-align: center;
    }
    
    .about-founder-content h2 {
        font-size: 2.8rem;
        color: #2c3e50;
        margin-bottom: 2rem;
        font-weight: 800;
        text-align: center;
    }
    
    .about-founder-content p {
        font-size: 1.1rem;
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .about-founder-content .btn {
        margin-top: 1.5rem;
        display: inline-block;
        background-color: var(--primary-color);
        color: white;
        padding: 0.8rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(40, 180, 133, 0.3);
    }
    
    .about-founder-content .btn:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(40, 180, 133, 0.4);
        color: white;
    }
    
    .about-founder-image {
        text-align: center;
        animation: fadeInRight 0.6s ease-out;
    }
    
    .about-founder-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        margin-bottom: 1.5rem;
        max-width: 400px;
    }
    
    .founder-name {
        text-align: center;
    }
    
    .founder-title {
        font-size: 0.9rem;
        color: var(--primary-color);
        font-weight: 600;
        margin: 0;
        letter-spacing: 1px;
    }
    
    .founder-fullname {
        font-size: 1.8rem;
        color: var(--text-dark);
        font-weight: 800;
        margin: 0.5rem 0 0.25rem 0;
    }
    
    .founder-position {
        font-size: 0.95rem;
        color: var(--text-light);
        font-weight: 600;
        margin: 0;
    }
    
    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @media (max-width: 1024px) {
        .about-founder-container {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        .about-founder-content h2 {
            font-size: 2.2rem;
        }
        .about-founder-image img {
            max-width: 350px;
        }
    }
    
    @media (max-width: 768px) {
        .about-founder {
            padding: 3rem 1.5rem;
        }
        .about-founder-container {
            gap: 2rem;
        }
        .about-founder-content h2 {
            font-size: 1.8rem;
        }
        .about-founder-content p {
            font-size: 1rem;
            text-align: center;
        }
        .about-founder-image img {
            max-width: 300px;
        }
        .founder-fullname {
            font-size: 1.4rem;
        }
    }
    
    @media (max-width: 480px) {
        .about-founder {
            padding: 2rem 1rem;
        }
        .about-founder-content h2 {
            font-size: 1.5rem;
        }
        .about-founder-image img {
            max-width: 250px;
        }
        .founder-fullname {
            font-size: 1.2rem;
        }
    }
    /* ========== NEWS SECTION ========== */
    
    .recent-updates {
        padding: 4rem 2rem;
        background-color: var(--bg-light);
        position: relative;
    }
    
    .recent-updates h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }
    
    .more-link {
        position: absolute;
        top: 2rem;
        right: 2rem;
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
    }
    
    .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 3rem auto 0;
    }
    
    .news-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
        opacity: 0;
        transform: translateY(30px);
    }
    
    .news-card.visible {
        opacity: 1;
        transform: translateY(0);
        animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }
    
    .news-card:hover {
        transform: translateY(-5px);
    }
    
    .news-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }
    
    .placeholder-image {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
        font-size: 1.1rem;
    }
    
    .news-content {
        padding: 2rem;
    }
    
    .news-content h3 {
        color: var(--text-dark);
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }
    
    .news-content p {
        color: var(--text-light);
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .read-more {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }
    
    .read-more:hover {
        color: var(--primary-dark);
    }
    /* ========== TESTIMONIALS SECTION ========== */
    
    .testimonials {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: white;
        padding: 4rem 2rem;
    }
    
    .testimonials h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .testimonials-slider {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        min-height: 200px;
    }
    
    .testimonial-item {
        opacity: 0;
        position: absolute;
        width: 100%;
        text-align: center;
        transition: opacity 0.5s ease;
        padding: 2rem;
    }
    
    .testimonial-item.active {
        opacity: 1;
        position: relative;
    }
    
    .testimonial-text {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        font-style: italic;
        line-height: 1.8;
    }
    
    .testimonial-author {
        font-weight: 600;
        margin-bottom: 0;
    }
    
    .testimonial-nav {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .prev-slide,
    .next-slide {
        background-color: rgba(255, 255, 255, 0.2);
        color: white;
        border: 2px solid white;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .prev-slide:hover,
    .next-slide:hover {
        background-color: white;
        color: var(--primary-color);
    }
    /* ========== CTA SECTION ========== */
    
    .cta {
        background: linear-gradient(135deg, #E8F5F0 0%, #F0FFFE 100%);
        padding: 4rem 2rem;
        text-align: center;
    }
    
    .cta h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }
    
    .cta p {
        font-size: 1.1rem;
        color: var(--text-light);
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .cta-buttons .btn {
        padding: 1rem 2.5rem;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        min-width: 220px;
    }
    
    .cta-buttons .btn-primary {
        background-color: var(--primary-color);
        color: white;
        box-shadow: 0 4px 15px rgba(40, 180, 133, 0.3);
    }
    
    .cta-buttons .btn-primary:hover {
        background-color: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(40, 180, 133, 0.4);
    }
    
    .cta-buttons .btn-secondary {
        background-color: white;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    
    .cta-buttons .btn-secondary:hover {
        background-color: var(--primary-color);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(40, 180, 133, 0.2);
    }
    /* ========== FOOTER ========== */
    
    .footer {
        background-color: #f5f5f5;
        color: #666;
        padding: 3rem 2rem 1rem;
    }
    
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .footer-section h4 {
        margin-bottom: 1.5rem;
        color: #1a1a1a;
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .footer-section ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 0.8rem;
    }
    
    .footer-section ul li a {
        color: #666;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s ease;
    }
    
    .footer-section ul li a:hover {
        color: #FFFF00;
    }
    
    .footer-section p {
        margin-bottom: 0.8rem;
        line-height: 1.6;
        font-size: 0.95rem;
    }
    
    .footer-contact {
        margin-top: 1.5rem;
    }
    
    .footer-contact p {
        margin-bottom: 0.8rem;
    }
    
    .contact-link {
        color: #FFFF00;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .contact-link:hover {
        color: #ffc700;
        text-decoration: underline;
    }
    
    .social-icons {
        display: flex;
        gap: 0.8rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }
    
    .social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        background-color: #FFFF00;
        border-radius: 50%;
        color: #1a1a1a;
        text-decoration: none;
        font-size: 1rem;
        transition: background-color 0.3s ease;
    }
    
    .social-icon:hover {
        background-color: #ffc700;
    }
    
    .footer-bottom {
        border-top: 1px solid #ddd;
        padding-top: 2rem;
        text-align: center;
        color: #999;
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom a {
        color: #666;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-bottom a:hover {
        color: #FFFF00;
    }
    
    @media (max-width: 1024px) {
        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
    }
    
    @media (max-width: 768px) {
        .footer {
            padding: 2rem 1.5rem;
        }
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
    }
    /* ========== RESPONSIVE DESIGN ========== */
    
    @media (max-width: 1024px) {
        .header-container {
            padding: 0.1.5rem 1rem;
        }
        .hero {
            padding: 4rem 1.5rem;
            min-height: 400px;
        }
        .hero-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .hero-text h1 {
            font-size: 2.5rem;
        }
        .hero-text p {
            font-size: 1.1rem;
        }
        .hero-video {
            order: -1;
        }
        .about-content h2,
        .what-we-do h2,
        .testimonials h2,
        .cta h2 {
            font-size: 2.2rem;
        }
        .initiatives-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .stat-number {
            font-size: 2.5rem;
        }
    }
    
    @media (max-width: 768px) {
        .about {
            padding: 3rem 0.5rem;
        }
        .programs {
            padding: 3rem 0.5rem;
        }
        .programs .section-header h2 {
            font-size: 1.8rem;
        }
        .mission-vision {
            padding: 1.5rem 0.25rem;
        }
        .mission-vision-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
            padding: 0;
        }
        .header {
            top: 0.75rem;
        }
        .header-container {
            padding: 1rem 1rem;
            flex-wrap: nowrap;
        }
        .logo-section {
            width: auto;
            margin-bottom: 0;
        }
        .logo img {
            height: 42px;
        }
        .nav-menu {
            display: none;
            width: 100%;
        }
        .nav-menu.active {
            display: block;
        }
        .nav-menu>ul {
            flex-direction: column;
            gap: 0;
            padding: 1rem 0;
        }
        .nav-menu>ul>li {
            border-bottom: 1px solid #f0f0f0;
        }
        .nav-menu>ul>li>a {
            display: block;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .header-right {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }
        .search-box {
            width: 100%;
            padding: 0.75rem;
        }
        .contact-btn {
            width: 100%;
            text-align: center;
        }
        .hero {
            padding: 4.5rem 1rem 2.5rem;
            min-height: 600px;
            display: flex;
            align-items: flex-end;
        }
        .hero-content {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
            padding-top: 1rem;
            padding-bottom: 6rem;
        }
        .hero-text {
            width: 100%;
        }
        .hero-text h1 {
            font-size: 1.5rem;
            line-height: 1.4;
            margin-bottom: 0.75rem;
        }
        .hero-text p {
            font-size: 1rem;
        }
        .hero-video {
            order: 2;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }
        .video-label {
            font-size: 0.95rem;
            max-width: 100%;
            margin-bottom: 0.25rem;
            line-height: 1.3;
            flex: none;
            min-width: 0;
        }
        .video-placeholder {
            width: 64px;
            height: 48px;
            flex: none;
            order: 0;
        }
        .hero-buttons {
            flex-direction: column;
            gap: 1rem;
        }
        .btn {
            width: 100%;
            text-align: center;
            padding: 0.9rem 2rem;
        }
        .video-placeholder {
            max-width: 350px;
        }
        .stats-container {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.75rem;
            padding-bottom: 1rem;
        }
        .stat-item {
            min-width: 0;
            padding: 1rem 0.75rem;
            border-right: none;
        }
        .stat-number {
            font-size: 1.5rem;
        }
        .stat-label {
            font-size: 0.8rem;
        }
        .about-content h2,
        .what-we-do h2,
        .recent-updates h2,
        .testimonials h2,
        .cta h2 {
            font-size: 1.8rem;
        }
        .section-subtitle {
            font-size: 1rem;
        }
        .mission-vision-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .mission-box {
            padding: 1.5rem;
            border-left-width: 3px;
        }
        .mission-box h4 {
            font-size: 1.1rem;
        }
        .mission-box p {
            font-size: 0.95rem;
        }
        .initiatives-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .initiative-card {
            padding: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
        }
        .initiative-card h3 {
            font-size: 1.1rem;
        }
        .initiative-card p {
            font-size: 0.95rem;
        }
        .initiative-icon {
            font-size: 2.5rem;
        }
        .news-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .news-image {
            height: 150px;
        }
        .news-content {
            padding: 1.5rem;
        }
        .news-content h3 {
            font-size: 1.1rem;
        }
        .testimonials-slider {
            min-height: 180px;
        }
        .testimonial-text {
            font-size: 1.05rem;
        }
        .testimonial-nav {
            gap: 0.5rem;
        }
        .prev-slide,
        .next-slide {
            padding: 0.4rem 0.8rem;
            font-size: 0.9rem;
        }
        .cta-buttons {
            flex-direction: column;
            gap: 1rem;
        }
        .cta-buttons .btn {
            width: 100%;
        }
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            text-align: center;
        }
        .footer-section h3,
        .footer-section h4 {
            margin-bottom: 0.75rem;
        }
        .more-link {
            position: static;
            display: block;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        .facts-carousel {
            padding: 2rem 1rem;
        }
        .facts-carousel h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .carousel-wrapper {
            padding: 1.5rem 2.5rem;
            min-height: 180px;
        }
        .fact-item p {
            font-size: 0.95rem;
        }
        .carousel-nav {
            width: 45px;
            height: 45px;
            font-size: 1.3rem;
        }
        .carousel-nav.prev {
            left: 0;
        }
        .carousel-nav.next {
            right: 0;
        }
    }
    
    @media (max-width: 480px) {
        .header-container {
            padding: 0.8rem 0.75rem;
        }
        .hero-text h1 {
            font-size: 1.25rem;
            margin-bottom: 0.65rem;
        }
        .hero-text p {
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        .btn {
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
        }
        .stats-container {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.5rem;
        }
        .stat-item {
            padding: 0.85rem;
        }
        .stat-number {
            font-size: 1.1rem;
        }
        .stat-label {
            font-size: 0.65rem;
            line-height: 1.15;
        }
        .about-content h2,
        .what-we-do h2,
        .recent-updates h2,
        .testimonials h2,
        .cta h2,
        .facts-carousel h3 {
            font-size: 1.5rem;
        }
        .hero-content {
            gap: 1rem;
        }
        .mission-box {
            padding: 1rem;
        }
        .mission-box h4 {
            font-size: 1rem;
        }
        .mission-box p {
            font-size: 0.85rem;
            line-height: 1.5;
        }
        .initiative-card {
            padding: 1.25rem;
        }
        .initiative-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }
        .initiative-card h3 {
            font-size: 1rem;
            margin-bottom: 0.75rem;
        }
        .initiative-card p {
            font-size: 0.85rem;
        }
        .news-content {
            padding: 1rem;
        }
        .news-content h3 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        .news-content p {
            font-size: 0.85rem;
            margin-bottom: 0.75rem;
        }
        .testimonial-text {
            font-size: 0.95rem;
            margin-bottom: 0.75rem;
        }
        .testimonial-author {
            font-size: 0.9rem;
        }
        .prev-slide,
        .next-slide {
            padding: 0.3rem 0.6rem;
            font-size: 0.8rem;
        }
        .carousel-wrapper {
            padding: 1rem 2rem;
            margin: 0 -0.5rem;
            min-height: 160px;
        }
        .fact-item p {
            font-size: 0.85rem;
            line-height: 1.5;
        }
        .fact-link {
            font-size: 0.9rem;
        }
        .carousel-nav {
            width: 38px;
            height: 38px;
            font-size: 1.1rem;
        }
        .social-links {
            gap: 0.5rem;
        }
        .social-icon {
            width: 36px;
            height: 36px;
            font-size: 0.8rem;
        }
        .footer-section h3 {
            font-size: 1.1rem;
        }
        .footer-section h4 {
            font-size: 1rem;
        }
        .footer-section p {
            font-size: 0.85rem;
        }
        .about-content p {
            font-size: 0.95rem;
        }
        .cta p {
            font-size: 0.95rem;
        }
    }
    
    @media (max-width: 360px) {
        .logo img {
            height: 40px;
        }
        .header-right {
            gap: 0.25rem;
        }
        .search-box {
            padding: 0.5rem 0.75rem;
            font-size: 0.85rem;
        }
        .hero {
            padding: 1.5rem 0.75rem;
        }
        .hero-text h1 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        .hero-text p {
            font-size: 0.8rem;
            margin-bottom: 1rem;
        }
        .stats-container {
            gap: 0.75rem;
        }
        .stat-item {
            padding: 0.75rem;
        }
        .stat-number {
            font-size: 1rem;
        }
        .stat-label {
            font-size: 0.6rem;
        }
        .about-content h2,
        .what-we-do h2,
        .recent-updates h2,
        .testimonials h2,
        .cta h2 {
            font-size: 1.3rem;
        }
        .initiative-card {
            padding: 1rem;
        }
        .initiative-icon {
            font-size: 1.8rem;
        }
        .carousel-wrapper {
            padding: 1rem 1.5rem;
        }
        .carousel-nav {
            width: 35px;
            height: 35px;
            font-size: 1rem;
        }
    }
    /* ========== ANIMATIONS ========== */
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }