 :root {
            --primary: #F39C12;
            --primary-light: #FDEBD0;
            --primary-dark: #E67E22;
            --secondary: #27AE60;
            --secondary-light: #D5F5E3;
            --secondary-dark: #229954;
            --accent: #2980B9;
            --accent-light: #D6EAF8;
            --accent-dark: #2471A3;
            --light: #FDFEFE;
            --dark: #2C3E50;
            --dark-light: #566573;
            --neutral: #EDBB99;
            --neutral-light: #FDEBD0;
            --neutral-dark: #DC7633;
            --gray-100: #F8F9F9;
            --gray-200: #EBEDEF;
            --gray-300: #D5D8DC;
            --gray-400: #A6ACAF;
            --gray-500: #85929E;
            --gray-600: #707B7C;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
            --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.7;
            background-color: var(--light);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Merriweather', serif;
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: var(--dark);
            line-height: 1.3;
        }

        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.8rem; }
        h3 { font-size: 2.2rem; }
        h4 { font-size: 1.8rem; }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--dark-light);
        }

        a {
            text-decoration: none;
            transition: var(--transition);
            color: var(--primary);
        }

        a:hover {
            color: var(--primary-dark);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        section {
            padding: 100px 0;
        }

        .container {
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
            gap: 8px;
            border: none;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: rgba(255,255,255,0.1);
            transition: all 0.5s ease;
            z-index: -1;
        }

        .btn:hover:before {
            width: 100%;
        }

        .btn-primary {
            background-color: var(--accent);
            color: white;
            border: 2px solid var(--accent);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            background-color: var(--accent-dark);
            border-color: var(--accent-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background-color: var(--primary);
            color: white;
            border: 2px solid var(--primary);
            box-shadow: var(--shadow-md);
        }

        .btn-secondary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
        }

        .btn-outline:hover {
            background-color: var(--accent);
            color: white;
        }

        /* Header Styles */
        .top-bar {
            background-color: var(--dark);
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
            position: relative;
            z-index: 1001;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .top-contact span {
            margin-right: 25px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .top-contact i {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: white;
            font-size: 1.1rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
        }

        .social-links a:hover {
            color: var(--primary);
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }

        header {
            position: sticky;
            top: 0;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-md);
            z-index: 1000;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 2.2rem;
            margin: 0;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 10px;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            padding: 12px 18px;
            border-radius: 6px;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            transition: width 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
            background: var(--gray-100);
        }

        .nav-links a:hover:after,
        .nav-links a.active:after {
            width: 70%;
        }

        .donate-btn {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .donate-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
            background: none;
            border: none;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/community.jpg') center center/cover no-repeat;
            padding: 180px 0 100px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(243, 156, 18, 0.3), rgba(39, 174, 96, 0.3));
            z-index: 0;
        }

        .page-header .container {
            position: relative;
            z-index: 1;
        }

        .page-header h1 {
            font-size: 4rem;
            margin-bottom: 25px;
            color: white;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
            animation: fadeInDown 1s ease;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
            animation: fadeInUp 1s ease;
            flex-wrap: wrap;
        }

        .breadcrumb-item {
            margin: 0 8px;
            font-size: 1.1rem;
        }

        .breadcrumb-item a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s;
        }

        .breadcrumb-item a:hover {
            color: white;
        }

        .breadcrumb-item.active {
            color: white;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            content: ">";
            color: white;
            margin-right: 15px;
        }

        /* Section Styles */
        .section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .section-title h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--gray-600);
            max-width: 800px;
            margin: 30px auto 0;
            line-height: 1.8;
        }

        /* About Intro Section */
        .about-intro {
            background: var(--gray-100);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-img {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            transform: rotate(2deg);
            transition: var(--transition);
        }

        .about-img:hover {
            transform: rotate(0deg) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.7s ease;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .about-img::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--secondary);
            border-radius: 20px;
            z-index: -1;
            transition: var(--transition);
        }

        .about-img:hover::after {
            top: 10px;
            left: 10px;
        }

        .highlight-box {
            background: linear-gradient(to right, var(--primary-light), var(--secondary-light));
            padding: 30px;
            border-radius: 16px;
            border-left: 4px solid var(--primary);
            margin-bottom: 30px;
        }

        /* Programs Section */
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .program-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid var(--gray-200);
        }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-light);
        }

        .program-icon {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            font-size: 3.5rem;
            position: relative;
            overflow: hidden;
        }

        .program-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            transition: all 0.5s ease;
        }

        .program-card:hover .program-icon::before {
            transform: rotate(45deg) translate(20px, 20px);
        }

        .program-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .program-content h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark);
            position: relative;
            padding-bottom: 15px;
        }

        .program-content h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        .program-content p {
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .program-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent);
            font-weight: 600;
            transition: var(--transition);
        }

        .program-link:hover {
            color: var(--accent-dark);
            gap: 12px;
        }

        /* History Section */
        .history-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .history-highlight {
            background: var(--gray-100);
            padding: 25px;
            border-radius: 16px;
            margin: 25px 0;
            border-left: 4px solid var(--secondary);
        }

        .history-img {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            transform: rotate(-2deg);
            transition: var(--transition);
        }

        .history-img:hover {
            transform: rotate(0deg) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .history-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.7s ease;
        }

        .history-img:hover img {
            transform: scale(1.05);
        }

        .history-img::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: -10px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--primary);
            border-radius: 20px;
            z-index: -1;
            transition: var(--transition);
        }

        .history-img:hover::after {
            bottom: 10px;
            right: 10px;
        }

        /* Impact Stats Section */
        .impact-stats {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('img/community.jpg') center center/cover no-repeat;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .impact-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(243, 156, 18, 0.3), rgba(39, 174, 96, 0.3));
            z-index: 0;
        }

        .impact-stats .container {
            position: relative;
            z-index: 1;
        }

        .impact-stats .section-title h2 {
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-box {
            padding: 40px 25px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .stat-box:hover {
            transform: translateY(-10px);
            background-color: rgba(255, 255, 255, 0.15);
            box-shadow: var(--shadow-lg);
        }

        .stat-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .stat-box:hover::before {
            transform: translateX(100%);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 15px;
            display: block;
        }

        .stat-box p {
            font-size: 1.1rem;
            margin: 0;
            color: white;
        }

        .text-center {
            text-align: center;
        }

        /* Future Vision Section */
        .vision-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .vision-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            border: 1px solid var(--gray-200);
            height: 100%;
        }

        .vision-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-light);
        }

        .vision-card h3 {
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .vision-card h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        /* Challenges Section */
        .challenges-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .challenge-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            border: 1px solid var(--gray-200);
            height: 100%;
        }

        .challenge-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-light);
        }

        .challenge-card h3 {
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .challenge-card h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.1"><circle cx="50" cy="50" r="40" stroke="white" fill="none" /></svg>');
            background-size: 200px;
        }

        .cta-section h2 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: white;
        }

        .cta-section p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.8;
            color: rgba(255,255,255,0.9);
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .cta-btn {
            background-color: white;
            color: var(--primary);
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--primary);
            transition: width 0.4s ease;
            z-index: -1;
        }

        .cta-btn:hover {
            color: white;
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .cta-btn:hover::before {
            width: 100%;
        }

        /* Footer Styles */
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 100px 0 0;
            position: relative;
        }

        .footer:before {
            content: '';
            position: absolute;
            top: -100px;
            left: 0;
            width: 100%;
            height: 200px;
            background: var(--dark);
            transform: skewY(-3deg);
            z-index: -1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
        }

        .footer-col h3 {
            color: white;
            margin-bottom: 30px;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }

        .footer-col p {
            margin-bottom: 25px;
            line-height: 1.8;
            color: rgba(255,255,255,0.7);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            display: block;
            position: relative;
            padding-left: 20px;
        }

        .footer-links a:before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary);
            transition: transform 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 30px;
        }

        .footer-links a:hover:before {
            transform: translateX(5px);
        }

        .footer-contact li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }

        .footer-contact i {
            margin-right: 15px;
            color: var(--primary);
            font-size: 1.2rem;
            margin-top: 5px;
        }

        .newsletter-form {
            display: flex;
            margin-top: 25px;
            position: relative;
            border-radius: 50px;
            overflow: hidden;
            background: rgba(255,255,255,0.1);
        }

        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            background: transparent;
            outline: none;
            font-family: 'Inter', sans-serif;
            color: white;
        }

        .newsletter-input::placeholder {
            color: rgba(255,255,255,0.6);
        }

        .newsletter-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-btn:hover {
            background: var(--primary-dark);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding: 30px 0;
            margin-top: 70px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255,255,255,0.6);
        }

        /* 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);
            }
        }

        /* NEW STYLES FOR DROPDOWN SECTIONS */
        .dropdown-section {
            display: none;
            background-color: var(--gray-100);
            padding: 80px 0;
            transition: all 0.5s ease;
        }
        
        .dropdown-section.active {
            display: block;
            animation: fadeInUp 0.5s ease;
        }
        
        .team-role {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 10px !important;
            font-style: italic;
        }
        
        .close-dropdown {
            margin-top: 30px;
            background-color: var(--gray-300);
            color: var(--dark);
        }
        
        .close-dropdown:hover {
            background-color: var(--gray-400);
            color: white;
        }
        
        .btn-expand {
            margin-top: 20px;
            display: inline-block;
            cursor: pointer;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .container {
                max-width: 1140px;
            }
            
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 992px) {
            .container {
                max-width: 960px;
            }

            .about-content,
            .history-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .about-img,
            .history-img {
                order: -1;
            }

            .section-title h2 {
                font-size: 2.5rem;
            }

            .page-header h1 {
                font-size: 3.2rem;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -300px;
                width: 300px;
                height: 100vh;
                background: var(--dark);
                flex-direction: column;
                padding-top: 100px;
                transition: right 0.4s ease;
                z-index: 1000;
                gap: 0;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 15px 0;
                text-align: center;
                width: 100%;
            }

            .nav-links a {
                color: white;
                font-size: 1.3rem;
                padding: 15px 0;
                width: 100%;
                display: block;
            }

            .mobile-menu-btn {
                display: block;
                z-index: 1001;
            }
        }

        @media (max-width: 768px) {
            .container {
                max-width: 720px;
            }

            .section {
                padding: 80px 0;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .page-header h1 {
                font-size: 2.8rem;
            }

            .programs-grid,
            .stats-grid,
            .vision-grid,
            .challenges-grid {
                grid-template-columns: 1fr;
            }

            .cta-section h2 {
                font-size: 2.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .top-bar .container {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 576px) {
            .container {
                max-width: 540px;
                padding: 0 15px;
            }

            .section {
                padding: 60px 0;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .page-header {
                padding: 120px 0 80px;
            }

            .page-header h1 {
                font-size: 2.2rem;
            }

            .stat-number {
                font-size: 2.8rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            .cta-section p {
                font-size: 1.1rem;
            }
        }