        :root {
            --primary: #205072;
            --primary-dark: #112d32;
            --secondary: #329d9c;
            --secondary-dark: #205072;
            --accent: #f6e27a;
            --light: #f9f9f9;
            --dark: #22223b;
            --gray: #bfc9ca;
            --light-gray: #f4f6fb;
            --white: #ffffff;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(32, 80, 114, 0.08);
            --shadow-hover: 0 8px 25px rgba(32, 80, 114, 0.13);
        }
        :root {
            --primary: #205072;
            --primary-dark: #112d32;
            --secondary: #329d9c;
            --secondary-dark: #205072;
            --accent: #f6e27a;
            --light: #f9f9f9;
            --dark: #22223b;
            --gray: #bfc9ca;
            --light-gray: #f4f6fb;
            --white: #ffffff;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(32, 80, 114, 0.08);
            --shadow-hover: 0 8px 25px rgba(32, 80, 114, 0.13);
        }
        
        html {
            overflow-x: hidden;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100vw;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 2rem;
            box-sizing: border-box;
        }
        
        .section {
            padding: 6rem 0;
            position: relative;
        }
        
        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            color: var(--secondary-dark);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: var(--transition);
            border: 2px solid transparent;
            cursor: pointer;
        }
        
        .btn-primary {
            background: var(--primary);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        
        .btn-outline {
            background: transparent;
            border-color: var(--secondary);
            color: var(--secondary);
        }
        
        .btn-outline:hover {
            background: var(--secondary);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        
        .btn-white {
            background: var(--white);
            color: var(--primary);
        }
        
        .btn-white:hover {
            background: transparent;
            color: var(--white);
            border-color: var(--white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        
        /* Top Bar */
        .top-bar {
            background: var(--secondary-dark);
            color: var(--white);
            padding: 0.5rem 0;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        header.scrolled {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            gap: 2rem;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 10px;
        }
        
        .logo span {
            color: var(--secondary-dark);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
            position: relative;
        }
        
        nav ul li a {
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
            z-index: 1001;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background-color: #205072;;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
            z-index: 1;
        }
        
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            color: var(--white);
            padding: 0 2rem;
            animation: fadeInUp 1s ease;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
        }
        
        
      /* Stats Section - Mobile Responsive */
.stats-section {
    background: linear-gradient(rgba(32, 80, 114, 0.92), rgba(50, 157, 156, 0.92)), url('https://images.unsplash.com/photo-1527525443983-6e60c75fff46?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
    width: 100%;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
    border: 1.5px solid var(--gray);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
    margin: 0 auto;
    width: 100%;
    max-width: 200px;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(246, 226, 122, 0.18);
    border-color: var(--accent);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-family: sans-serif;
    text-shadow: 1px 1px 6px rgba(32, 80, 114, 0.10);
    line-height: 1.1;
}

.stat-item p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.3;
    padding: 0 5px;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .stats-section {
        padding: 3rem 0;
        background-attachment: scroll;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
        min-height: 100px;
        max-width: 160px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .stat-item {
        padding: 0.8rem 0.3rem;
        min-height: 90px;
        max-width: 140px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-item p {
        font-size: 0.75rem;
    }
}

/* For extremely small screens */
@media (max-width: 380px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .stat-item {
        max-width: 200px;
    }
}
        
        /* Responsive Design for Stats Section */
        @media (max-width: 992px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .stats-section {
                padding: 4rem 0;
                background-attachment: scroll; /* Better performance on mobile */
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .stat-item {
                padding: 1.5rem;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
            
            .stat-item p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 1rem;
            }
            
            .stats-section {
                padding: 3rem 0;
            }
            
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 2rem;
            }
            
            .section-title::after {
                width: 60px;
                height: 3px;
                bottom: -10px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        /* Programs Section */
        .programs-section {
            background: var(--light-gray);
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
        }
        
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .program-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .program-img {
            height: 250px;
            overflow: hidden;
        }
        
        .program-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .program-card:hover .program-img img {
            transform: scale(1.1);
        }
        
        .program-info {
            padding: 2rem;
        }
        
        .program-info h3 {
            color: var(--secondary-dark);
            margin-bottom: 1rem;
        }
        
        .program-info p {
            color: var(--gray);
            margin-bottom: 1.5rem;
        }
        
        :root {
            --primary: #205072;
            --primary-dark: #112d32;
            --secondary: #329d9c;
            --secondary-light: #56c2bb;
            --accent: #f6e27a;
            --accent-dark: #e6c44c;
            --light: #f9f9f9;
            --dark: #22223b;
            --gray: #7b8794;
            --light-gray: #f4f6fb;
            --white: #ffffff;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(32, 80, 114, 0.08);
            --shadow-hover: 0 8px 25px rgba(32, 80, 114, 0.15);
            --border-radius: 12px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .section {
            padding: 6rem 0;
            position: relative;
        }
        
        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            color: var(--primary);
            font-family: 'Playfair Display', serif;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        /* Success Stories Section */
        .stories-section {
            padding: 6rem 0;
            background: var(--light-gray);
            position: relative;
        }
        
        .stories-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(to bottom, var(--white), transparent);
            z-index: 0;
        }
        
        .stories-container {
            position: relative;
            z-index: 1;
        }
        
        .stories-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .stories-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .stories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .story-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .story-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .story-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .story-card:hover .story-image img {
            transform: scale(1.1);
        }
        
        .story-category {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--accent);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .story-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .story-quote {
            font-size: 1.1rem;
            font-style: italic;
            color: var(--dark);
            margin-bottom: 1.5rem;
            position: relative;
            line-height: 1.8;
        }
        
        .story-quote::before {
            content: '\201C';
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            top: -1.5rem;
            left: -1rem;
            font-family: 'Playfair Display', serif;
        }
        
        .story-author {
            display: flex;
            align-items: center;
            margin-top: auto;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
            border: 3px solid var(--primary);
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            color: var(--primary);
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
        }
        
        .author-info p {
            color: var(--gray);
            font-size: 0.9rem;
            margin: 0;
        }
        
        .stories-cta {
            text-align: center;
            margin-top: 4rem;
        }
        
        /* Stats Section */
        .impact-stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 4rem 0;
            padding: 3rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: var(--border-radius);
            color: var(--white);
        }
        
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 200px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--accent);
            font-family: 'Playfair Display', serif;
        }
        
        .stat-text {
            font-size: 1rem;
            font-weight: 500;
        }
        
        /* Video Testimonials */
        .video-testimonials {
            margin: 4rem 0;
        }
        
        .video-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .video-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .video-placeholder {
            position: relative;
            height: 200px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .video-placeholder i {
            font-size: 3rem;
            color: var(--white);
            opacity: 0.8;
        }
        
        .video-info {
            padding: 1.5rem;
        }
        
        .video-info h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .video-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .stories-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .impact-stats {
                padding: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 4rem 0;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .stories-header p {
                font-size: 1rem;
            }
            
            .story-content {
                padding: 1.5rem;
            }
            
            .impact-stats {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
            
            .stat-item {
                min-width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .stories-grid {
                grid-template-columns: 1fr;
            }
            
            .story-image {
                height: 200px;
            }
            
            .story-quote {
                font-size: 1rem;
            }
            
            .story-author {
                flex-direction: column;
                text-align: center;
            }
            
            .author-image {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: var(--white);
            text-align: center;
            padding: 5rem 0;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }
        
        .cta-content p {
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        /* News Section */
        .news-section {
            background: var(--light-gray);
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .news-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .news-img {
            height: 250px;
            overflow: hidden;
        }
        
        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .news-card:hover .news-img img {
            transform: scale(1.1);
        }
        
        .news-content {
            padding: 2rem;
        }
        
        .news-date {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }
        
        .news-date i {
            margin-right: 0.5rem;
        }
        
        .news-content h3 {
            margin-bottom: 1rem;
            color: var(--secondary-dark);
        }
        
        .news-content p {
            color: var(--gray);
            margin-bottom: 1.5rem;
        }
        
        /* Partners Section */
        .partners-section {
            background: var(--white);
            text-align: center;
        }
        
        .partners-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 3rem;
            margin-top: 3rem;
            align-items: center;
        }
        
        .partner-logo {
            height: 80px;
            width: auto;
            object-fit: contain;
            transition: var(--transition);
        }
        .partner-logo:hover {
            transform: scale(1.1);
        }
        
        /* Gallery Section */
        .gallery-section {
            background: var(--white);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-icon {
            color: var(--white);
            font-size: 2rem;
        }
        
        /* Events Section */
        .events-section {
            background: var(--light-gray);
        }
        
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .event-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
        }
        
        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .event-date {
            background: var(--primary);
            color: var(--white);
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-width: 100px;
        }
        
        .event-day {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .event-month {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .event-info {
            padding: 1.5rem;
            flex: 1;
        }
        
        .event-info h3 {
            color: var(--secondary-dark);
            margin-bottom: 0.5rem;
        }
        
        .event-info p {
            color: var(--gray);
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }
        
        .event-meta {
            display: flex;
            align-items: center;
            color: var(--gray);
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        
        .event-meta i {
            margin-right: 0.5rem;
            color: var(--primary);
        }
        
        /* Volunteer Section */
        .volunteer-section {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            text-align: center;
            padding: 6rem 0;
        }
        
        .volunteer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .volunteer-content h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }
        
        .volunteer-content p {
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Footer */
        footer {
            background: var(--secondary-dark);
            color: var(--white);
            padding: 5rem 0 2rem;
            position: relative;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-column h3 {
            color: var(--white);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--primary);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }
        
        .footer-column ul li a:hover {
            color: var(--white);
            padding-left: 5px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .contact-icon {
            color: var(--primary);
            margin-right: 1rem;
            font-size: 1.2rem;
            margin-top: 0.2rem;
        }
        
        .contact-text {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: var(--transition);
        }
        
        .social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero {
                min-height: 600px;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .programs-grid, .news-grid, .events-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                margin-left: auto;
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                max-width: 350px;
                height: 100vh;
                background: var(--white);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                padding: 6rem 2rem 2rem;
                z-index: 1000;
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 1.5rem 0;
            }
            
            nav ul li a {
                font-size: 1.1rem;
            }
            
            .hero {
                min-height: 500px;
                height: auto;
                padding: 8rem 0;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .hero-buttons, .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .section {
                padding: 4rem 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            
            .event-card {
                flex-direction: column;
            }
            
            .event-date {
                flex-direction: row;
                justify-content: flex-start;
                gap: 1rem;
                padding: 1rem;
            }
            
            .event-day, .event-month {
                display: inline-block;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 0.5rem;
                width: 100vw;
                max-width: 100vw;
                overflow-x: hidden;
            }
            body, html {
                overflow-x: hidden;
            }
            .hero-content h1 {
                font-size: 2rem;
                word-break: break-word;
            }
            .section-title {
                font-size: 1.8rem;
                word-break: break-word;
            }
            .programs-grid, .news-grid, .events-grid, .gallery-grid {
                grid-template-columns: 1fr;
            }
            .stats-section {
                width: 100vw;
                box-sizing: border-box;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                width: 100vw;
                box-sizing: border-box;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        /* Improved Mobile Nav */
@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;          /* make it full width */
        height: 100vh;        /* full screen height */
        background: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        padding-top: 6rem;     /* space below header */
        z-index: 999;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;  /* center items */
    }

    nav ul li {
        margin: 1rem 0;
    }

    nav ul li a {
        font-size: 1.3rem;
    }
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 2000;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
body {
    padding-top: 90px;
}

/* About Page Specific Styles */
.page-header {
/* Dropdown menu styles for navigation */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 270px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    z-index: 1002;
    border-radius: 0 0 8px 8px;
    padding: 0.5rem 0;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: #205072;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    transition: background 0.2s;
}

.dropdown-content a:hover {
    background-color: #f4f6fb;
    color: #329d9c;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}
    background: linear-gradient(rgba(32, 80, 114, 0.8), rgba(50, 157, 156, 0.8)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
    margin-top: 90px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-intro {
    padding: 5rem 0;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.8;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.registration-section {
    background: var(--light-gray);
}

.registration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.registration-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.registration-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.registration-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.registration-item h3 {
    color: var(--secondary-dark);
    margin-bottom: 1rem;
}

.registration-item p {
    color: var(--gray);
}

.vision-mission {
    padding: 5rem 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.vision-card, .mission-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.vision-card h2, .mission-card h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: left;
}

.vision-card p, .mission-card p {
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.8;
}

.mission-card ul {
    margin-left: 1.5rem;
    color: var(--dark);
}

.mission-card ul li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.operation-area {
    background: var(--light-gray);
}

.operation-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.operation-content p {
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.8;
}

.map-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.map-placeholder {
    color: var(--gray);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.map-placeholder h3 {
    color: var(--secondary-dark);
    margin-bottom: 1rem;
}

.governing-body {
    padding: 5rem 0;
}

.governing-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.governing-content p {
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.8;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.member-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.member-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.history-section {
    background: var(--light-gray);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    padding: 0 2rem;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-date {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: absolute;
    top: 0;
    font-weight: bold;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -70px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -70px;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray);
}

/* Responsive Styles for About Page */
@media (max-width: 992px) {
    .about-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        padding-right: 0;
        padding-left: 70px;
    }
    
    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        left: -45px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
        margin-top: 70px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .registration-grid {
        grid-template-columns: 1fr;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .vision-card, .mission-card {
        padding: 1.5rem;
    }
    
    .map-container {
        padding: 1.5rem;
    }
}

/* Additional styles specific to about page */
        .about-hero {
            background: linear-gradient(rgba(32, 80, 114, 0.8), rgba(50, 157, 156, 0.8)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            padding: 8rem 0 5rem;
            color: white;
            text-align: center;
        }
        
        .history-section {
            padding: 5rem 0;
            background: var(--light-gray);
        }
        
        .history-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .history-timeline {
            position: relative;
            margin: 3rem 0;
            padding-left: 3rem;
        }
        
        .history-timeline::before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            height: 100%;
            width: 2px;
            background: var(--primary);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -3rem;
            top: 0.5rem;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--secondary);
            border: 3px solid var(--primary);
        }
        
        .timeline-year {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .team-section {
            padding: 5rem 0;
            background: white;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .team-member {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .member-img {
            height: 280px;
            overflow: hidden;
        }
        
        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .team-member:hover .member-img img {
            transform: scale(1.1);
        }
        
        .member-info {
            padding: 1.5rem;
            text-align: center;
        }
        
        .member-name {
            color: var(--secondary-dark);
            margin-bottom: 0.5rem;
        }
        
        .member-role {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 1rem;
        }
        
        .area-section {
            padding: 5rem 0;
            background: var(--light-gray);
        }
        
        .area-map {
            margin-top: 3rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .area-map iframe {
            width: 100%;
            height: 400px;
            border: none;
        }
        
        .registration-section {
            padding: 5rem 0;
            background: white;
        }
        
        .registration-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .registration-card {
            background: var(--light);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-left: 4px solid var(--primary);
        }
        
        .registration-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .registration-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .registration-card p {
            color: var(--dark);
            margin-bottom: 0;
        }
        
        .governance-section {
            padding: 5rem 0;
            background: var(--light-gray);
        }
        
        .governance-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .values-section {
            padding: 5rem 0;
            background: white;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .value-card {
            text-align: center;
            padding: 2rem;
            background: var(--light);
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .value-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .value-card h3 {
            color: var(--secondary-dark);
            margin-bottom: 1rem;
        }
        
        @media (max-width: 768px) {
            .about-hero {
                padding: 6rem 0 3rem;
            }
            
            .history-timeline {
                padding-left: 2rem;
            }
            
            .timeline-item::before {
                left: -2rem;
            }
        }

        /* Annual Reports Page Styles */
.page-header {
    background: linear-gradient(rgba(32, 80, 114, 0.8), rgba(50, 157, 156, 0.8)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
    margin-top: 90px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.reports-section {
    background: var(--light-gray);
}

.reports-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.reports-intro h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.reports-intro p {
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.8;
}

.reports-list h3 {
    color: var(--secondary-dark);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.reports-list h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.report-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.report-item {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition);
}

.report-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.report-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

.report-info h4 {
    color: var(--secondary-dark);
    margin-bottom: 0.8rem;
}

.report-info p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.financial-highlights {
    margin-bottom: 5rem;
}

.financial-highlights h3 {
    color: var(--secondary-dark);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.financial-highlights h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.financial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.financial-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.financial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.financial-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.financial-card h4 {
    color: var(--secondary-dark);
    margin-bottom: 1rem;
}

.financial-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.financial-card p {
    color: var(--gray);
}

.impact-section {
    background: linear-gradient(rgba(32, 80, 114, 0.92), rgba(50, 157, 156, 0.92)), url('https://images.unsplash.com/photo-1527525443983-6e60c75fff46?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.impact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
    border: 1.5px solid var(--gray);
}

.impact-item:hover {
    transform: translateY(-10px);
    background: rgba(246, 226, 122, 0.18);
    border-color: var(--accent);
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent);
    font-family: sans-serif;
}

.impact-text {
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
        margin-top: 70px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .report-items {
        grid-template-columns: 1fr;
    }
    
    .report-item {
        flex-direction: column;
        text-align: center;
    }
    
    .financial-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
}


 /* Donation Page Specific Styles */
        .page-header {
            background: linear-gradient(rgba(32, 80, 114, 0.8), rgba(50, 157, 156, 0.8)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            padding: 8rem 0 4rem;
            text-align: center;
            color: white;
            margin-top: 90px;
        }
        
        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .donation-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .method-card {
            background: var(--white);
            border-radius: 10px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .method-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .method-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .method-card h3 {
            color: var(--secondary-dark);
            margin-bottom: 1rem;
        }
        
        .method-card p {
            color: var(--gray);
            margin-bottom: 2rem;
        }
        
        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            padding: 3rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--secondary-dark);
        }
        
        input, select, textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid var(--gray);
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(32, 80, 114, 0.1);
        }
        
        .amount-options {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .amount-option {
            padding: 0.8rem 1.5rem;
            background: var(--light);
            border: 1px solid var(--gray);
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .amount-option:hover, .amount-option.active {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }
        
        #customAmount {
            flex: 1;
            min-width: 150px;
        }
        
        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .checkbox-group input[type="checkbox"] {
            width: auto;
            margin: 0;
        }
        
        .btn-large {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            width: 100%;
            margin-top: 1rem;
        }
        
        .bank-details-container, .cheque-info-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            padding: 3rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        .bank-info {
            margin-bottom: 2rem;
        }
        
        .info-item {
            display: flex;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .info-label {
            font-weight: 600;
            color: var(--secondary-dark);
            min-width: 150px;
        }
        
        .info-value {
            color: var(--dark);
        }
        
        .instructions {
            background: var(--light-gray);
            padding: 1.5rem;
            border-radius: 5px;
            margin-bottom: 2rem;
        }
        
        .instructions h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .instructions ul {
            margin-left: 1.5rem;
        }
        
        .instructions li {
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .info-card {
            background: var(--light-gray);
            padding: 1.5rem;
            border-radius: 5px;
        }
        
        .info-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .info-card ul {
            margin-left: 1.5rem;
        }
        
        .info-card li {
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        
        .mailing-address {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 5px;
            margin-bottom: 2rem;
        }
        
        .mailing-address h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .mailing-address p {
            color: var(--dark);
            margin-bottom: 1rem;
        }
        
        .note {
            font-style: italic;
            color: var(--gray);
        }
        
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .impact-item {
            text-align: center;
            padding: 2rem;
            background: var(--white);
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .impact-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .impact-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .impact-item h3 {
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }
        
        .impact-item p {
            color: var(--gray);
        }
        
        .tax-benefits-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .tax-info h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .tax-info p {
            margin-bottom: 2rem;
            color: var(--dark);
            line-height: 1.8;
        }
        
        .benefits-list {
            margin-bottom: 2rem;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .benefit-item i {
            color: var(--primary);
            margin-right: 1rem;
            font-size: 1.2rem;
        }
        
        .tax-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .tax-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--light-gray);
            border-radius: 5px;
            overflow: hidden;
        }

        .faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--white);
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--dark);
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(rgba(32, 80, 114, 0.9), rgba(32, 80, 114, 0.9)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--light);
    color: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tax-benefits-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .donation-methods {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .form-container, 
    .bank-details-container, 
    .cheque-info-container {
        padding: 2rem 1.5rem;
    }
    
    .amount-options {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Contact Page Specific Styles */
.page-header {
    background: linear-gradient(rgba(32, 80, 114, 0.8), rgba(50, 157, 156, 0.8)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
    margin-top: 90px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.contact-info > p {
    margin-bottom: 2.5rem;
    color: var(--dark);
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    min-width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 1.5rem;
}

.contact-text h3 {
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--dark);
    line-height: 1.6;
}

.social-links h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.contact-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-dark);
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(32, 80, 114, 0.1);
}

.map-section {
    padding: 5rem 0;
    background: var(--white);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.emergency-section {
    background: linear-gradient(rgba(230, 57, 70, 0.9), rgba(230, 57, 70, 0.9));
    color: var(--white);
    text-align: center;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-icon {
    font-size: 4rem;
}

.emergency-text h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.emergency-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.emergency-note {
    font-style: italic;
    opacity: 0.9;
}

.faq-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--white);
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--dark);
    line-height: 1.6;
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
        margin-top: 70px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .emergency-number {
        font-size: 2rem;
    }
}

/* Page Header */
        .gallery-page-header {
            background: linear-gradient(rgba(32, 80, 114, 0.8), rgba(50, 157, 156, 0.8)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            padding: 8rem 0 4rem;
            text-align: center;
            color: white;
            margin-top: 90px;
        }
        
        .gallery-page-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .gallery-page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        /* Gallery Container */
        .gallery-container {
            padding: 3rem 0 5rem;
            background: var(--light-gray);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-icon {
            color: var(--white);
            font-size: 2rem;
        }
        
        .load-more {
            text-align: center;
            margin-top: 2rem;
        }
        
        /* Lightbox Styles */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }
        
        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }
        
        .lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 5px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
        }
        
        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .lightbox-close:hover {
            color: var(--accent);
        }
        
        .lightbox-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 2rem;
        }
        
        .lightbox-control {
            color: var(--white);
            font-size: 2.5rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .lightbox-control:hover {
            color: var(--accent);
        }
        
        .lightbox-caption {
            position: absolute;
            bottom: -40px;
            left: 0;
            width: 100%;
            text-align: center;
            color: var(--white);
            font-size: 1.1rem;
        }
        
        /* Footer */
        footer {
            background: var(--secondary-dark);
            color: var(--white);
            padding: 5rem 0 2rem;
            position: relative;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-column h3 {
            color: var(--white);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--primary);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }
        
        .footer-column ul li a:hover {
            color: var(--white);
            padding-left: 5px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .contact-icon {
            color: var(--primary);
            margin-right: 1rem;
            font-size: 1.2rem;
            margin-top: 0.2rem;
        }
        
        .contact-text {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: var(--transition);
        }
        
        .social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                max-width: 350px;
                height: 100vh;
                background: var(--white);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                padding: 6rem 2rem 2rem;
                z-index: 1000;
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 1.5rem 0;
            }
            
            nav ul li a {
                font-size: 1.1rem;
            }
            
            .gallery-page-header {
                padding: 6rem 0 3rem;
                margin-top: 70px;
            }
            
            .gallery-page-header h1 {
                font-size: 2.2rem;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .lightbox-controls {
                padding: 0 1rem;
            }
            
            .lightbox-control {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 1rem;
            }
            
            .gallery-page-header h1 {
                font-size: 1.8rem;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Additional styles for programmes page */
        .programmes-hero {
            background: linear-gradient(rgba(32, 80, 114, 0.8), rgba(50, 157, 156, 0.8)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            padding: 8rem 0 4rem;
            text-align: center;
            color: white;
            margin-top: 90px;
        }
        
        .programmes-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .programmes-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .programmes-container {
            padding: 5rem 0;
            background: var(--light-gray);
        }
        
        .programmes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .programme-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .programme-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .programme-img {
            height: 200px;
            overflow: hidden;
        }
        
        .programme-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .programme-card:hover .programme-img img {
            transform: scale(1.1);
        }
        
        .programme-info {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .programme-info h3 {
            color: var(--secondary-dark);
            margin-bottom: 1rem;
        }
        
        .programme-info p {
            color: var(--gray);
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }
        
        .programme-link {
            margin-top: auto;
        }
        
        /* Mobile dropdown menu for programmes */
        .mobile-dropdown {
            display: none;
            width: 100%;
            margin: 2rem 0;
        }
        
        .mobile-dropdown select {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--gray);
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            background: var(--white);
        }
        
        @media (max-width: 768px) {
            .programmes-hero {
                padding: 6rem 0 3rem;
                margin-top: 70px;
            }
            
            .programmes-hero h1 {
                font-size: 2.2rem;
            }
            
            .programmes-grid {
                grid-template-columns: 1fr;
            }
            
            .mobile-dropdown {
                display: block;
            }
        }
        
        @media (max-width: 576px) {
            .programmes-hero h1 {
                font-size: 1.8rem;
            }
        }

        /* Additional styles specific to this page */
        .programme-hero {
            background: linear-gradient(rgba(32, 80, 114, 0.8), rgba(50, 157, 156, 0.8)), url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            padding: 8rem 0 4rem;
            text-align: center;
            color: white;
            margin-top: 90px;
        }
        
        .programme-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .programme-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .programme-content {
            padding: 5rem 0;
            background: var(--light-gray);
        }
        
        .programme-section {
            margin-bottom: 4rem;
            background: var(--white);
            padding: 3rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        .programme-section h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .programme-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
        }
        
        .programme-section p {
            margin-bottom: 1.5rem;
            color: var(--dark);
            line-height: 1.8;
        }
        
        .programme-section ul {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .programme-section li {
            margin-bottom: 0.8rem;
            color: var(--dark);
            line-height: 1.6;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 2rem;
            background: var(--light);
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .stat-text {
            color: var(--secondary-dark);
            font-weight: 500;
        }
        
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            height: 200px;
            box-shadow: var(--shadow);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .cta-box {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: var(--white);
            padding: 3rem;
            border-radius: 10px;
            text-align: center;
            margin-top: 3rem;
        }
        
        .cta-box h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }
        
        .cta-box p {
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        @media (max-width: 768px) {
            .programme-hero {
                padding: 6rem 0 3rem;
                margin-top: 70px;
            }
            
            .programme-hero h1 {
                font-size: 2.2rem;
            }
            
            .programme-section {
                padding: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .programme-hero h1 {
                font-size: 1.8rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .image-gallery {
                grid-template-columns: 1fr;
            }
        }

        /* Additional styles specific to this page */
        .campaign-hero {
            background: linear-gradient(rgba(230, 57, 70, 0.8), rgba(230, 57, 70, 0.7)), url('https://images.unsplash.com/photo-1593115057322-e94b77572f20?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            padding: 8rem 0 4rem;
            text-align: center;
            color: white;
            margin-top: 90px;
        }
        
        .campaign-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .campaign-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .campaign-content {
            padding: 5rem 0;
            background: var(--light-gray);
        }
        
        .campaign-section {
            margin-bottom: 4rem;
            background: var(--white);
            padding: 3rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        .campaign-section h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .campaign-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
        }
        
        .campaign-section p {
            margin-bottom: 1.5rem;
            color: var(--dark);
            line-height: 1.8;
        }
        
        .campaign-section ul {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .campaign-section li {
            margin-bottom: 0.8rem;
            color: var(--dark);
            line-height: 1.6;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 2rem;
            background: var(--light);
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .stat-text {
            color: var(--secondary-dark);
            font-weight: 500;
        }
        
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            height: 200px;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.5rem;
            font-size: 0.9rem;
            text-align: center;
            opacity: 0;
            transition: var(--transition);
        }
        
        .gallery-item:hover .gallery-caption {
            opacity: 1;
        }
        
        .case-study {
            background: linear-gradient(to right, var(--light), var(--light-gray));
            border-left: 4px solid var(--primary);
            padding: 2rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        
        .case-study h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .challenges-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .challenge-item {
            background: #fff8f8;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #e63946;
        }
        
        .challenge-item h4 {
            color: #e63946;
            margin-bottom: 0.5rem;
        }
        
        .cta-box {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: var(--white);
            padding: 3rem;
            border-radius: 10px;
            text-align: center;
            margin-top: 3rem;
        }
        
        .cta-box h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }
        
        .cta-box p {
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .campaign-activities {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .activity-card {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--secondary);
        }
        
        .activity-card h3 {
            color: var(--secondary-dark);
            margin-bottom: 1rem;
        }
        
        .activity-date {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        @media (max-width: 768px) {
            .campaign-hero {
                padding: 6rem 0 3rem;
                margin-top: 70px;
            }
            
            .campaign-hero h1 {
                font-size: 2.2rem;
            }
            
            .campaign-section {
                padding: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .campaign-activities {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .campaign-hero h1 {
                font-size: 1.8rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .image-gallery {
                grid-template-columns: 1fr;
            }
            
            .challenges-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Additional styles specific to CHILDLINE page */
        .emergency-alert {
            background: linear-gradient(135deg, #e63946, #c1121f);
            color: white;
            padding: 2rem 0;
        }
        
        .emergency-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        
        .emergency-icon {
            font-size: 3rem;
        }
        
        .emergency-text h2 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .emergency-number {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0.5rem 0;
        }
        
        .btn-emergency {
            background: white;
            color: #e63946;
            padding: 1rem 2rem;
            font-size: 1.2rem;
            font-weight: 700;
        }
        
        .btn-emergency:hover {
            background: #f8f9fa;
            transform: scale(1.05);
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .process-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            background: var(--light);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
        }
        
        .process-number {
            min-width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .process-content h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        @media (max-width: 768px) {
            .emergency-content {
                flex-direction: column;
                text-align: center;
            }
            
            .emergency-number {
                justify-content: center;
            }
            
            .process-item {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            
            .process-content {
                text-align: center;
            }
        }

            /* Additional styles specific to the creche programme page */
        .programme-hero {
            background: linear-gradient(rgba(50, 157, 156, 0.8), rgba(32, 80, 114, 0.8)), url('https://images.unsplash.com/photo-1549056572-75914d6d7e1a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            padding: 8rem 0 4rem;
            text-align: center;
            color: white;
            margin-top: 90px;
        }
        
        .programme-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .programme-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .programme-content {
            padding: 5rem 0;
            background: var(--light-gray);
        }
        
        .programme-section {
            margin-bottom: 4rem;
            background: var(--white);
            padding: 3rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        .programme-section h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .programme-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
        }
        
        .programme-section p {
            margin-bottom: 1.5rem;
            color: var(--dark);
            line-height: 1.8;
        }
        
        .programme-section ul {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .programme-section li {
            margin-bottom: 0.8rem;
            color: var(--dark);
            line-height: 1.6;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .feature-card {
            background: var(--light);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--secondary);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .feature-card h3 {
            color: var(--secondary-dark);
            margin-bottom: 1rem;
        }
        
        .feature-card p {
            color: var(--dark);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 2rem;
            background: var(--light);
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .stat-text {
            color: var(--secondary-dark);
            font-weight: 500;
        }
        
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            height: 200px;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.5rem;
            font-size: 0.9rem;
            text-align: center;
            opacity: 0;
            transition: var(--transition);
        }
        
        .gallery-item:hover .gallery-caption {
            opacity: 1;
        }
        
        .testimonial-section {
            background: linear-gradient(rgba(32, 80, 114, 0.05), rgba(50, 157, 156, 0.05));
            padding: 3rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        
        .testimonial-content {
            font-style: italic;
            text-align: center;
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 2rem;
            position: relative;
        }
        
        .testimonial-content::before,
        .testimonial-content::after {
            content: '"';
            font-size: 3rem;
            color: var(--primary);
            opacity: 0.3;
        }
        
        .testimonial-author {
            text-align: center;
            font-weight: 600;
            color: var(--secondary-dark);
        }
        
        .enrollment-process {
            background: var(--light);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .process-step {
            text-align: center;
            padding: 1.5rem;
            background: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-weight: bold;
        }
        
        .cta-box {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: var(--white);
            padding: 3rem;
            border-radius: 10px;
            text-align: center;
            margin-top: 3rem;
        }
        
        .cta-box h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }
        
        .cta-box p {
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        @media (max-width: 768px) {
            .programme-hero {
                padding: 6rem 0 3rem;
                margin-top: 70px;
            }
            
            .programme-hero h1 {
                font-size: 2.2rem;
            }
            
            .programme-section {
                padding: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .programme-hero h1 {
                font-size: 1.8rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .image-gallery {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Additional styles specific to this page */
        .page-header {
            background: linear-gradient(rgba(32, 80, 114, 0.8), rgba(50, 157, 156, 0.8)), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            padding: 8rem 0 4rem;
            text-align: center;
            color: white;
            margin-top: 90px;
        }
        
        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .programme-content {
            padding: 5rem 0;
            background: var(--light-gray);
        }
        
        .programme-section {
            margin-bottom: 4rem;
            background: var(--white);
            padding: 3rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        .programme-section h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .programme-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
        }
        
        .programme-section p {
            margin-bottom: 1.5rem;
            color: var(--dark);
            line-height: 1.8;
        }
        
        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .course-card {
            background: var(--light);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: var(--transition);
            border-left: 4px solid var(--primary);
        }
        
        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .course-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .course-card h3 {
            color: var(--secondary-dark);
            margin-bottom: 1rem;
        }
        
        .course-card p {
            color: var(--gray);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 2rem;
            background: var(--light);
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .stat-text {
            color: var(--secondary-dark);
            font-weight: 500;
        }
        
        .success-stories {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .story-card {
            background: var(--light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            display: flex;
            flex-direction: column;
        }
        
        .story-image {
            height: 200px;
            overflow: hidden;
        }
        
        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .story-content {
            padding: 1.5rem;
        }
        
        .story-content h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .story-meta {
            color: var(--secondary);
            font-weight: 500;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        
        .admission-process {
            margin-bottom: 2rem;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .process-step:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .step-number {
            min-width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-right: 1.5rem;
        }
        
        .step-content h3 {
            color: var(--secondary-dark);
            margin-bottom: 0.5rem;
        }
        
        .eligibility-criteria {
            background: var(--light);
            padding: 2rem;
            border-radius: 10px;
        }
        
        .eligibility-criteria h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .eligibility-criteria ul {
            margin-left: 1.5rem;
        }
        
        .eligibility-criteria li {
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        
        .cta-box {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: var(--white);
            padding: 3rem;
            border-radius: 10px;
            text-align: center;
            margin-top: 3rem;
        }
        
        .cta-box h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }
        
        .cta-box p {
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        @media (max-width: 768px) {
            .page-header {
                padding: 6rem 0 3rem;
                margin-top: 70px;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .programme-section {
                padding: 2rem;
            }
            
            .courses-grid {
                grid-template-columns: 1fr;
            }
            
            .success-stories {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                flex-direction: column;
                text-align: center;
            }
            
            .step-number {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

           /* Additional specific styles for the counseling page */
        .counseling-hero {
            background: linear-gradient(rgba(50, 157, 156, 0.8), rgba(32, 80, 114, 0.8)), url('https://images.unsplash.com/photo-1589652717521-10c0d092dea9?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            padding: 8rem 0 4rem;
            text-align: center;
            color: white;
            margin-top: 90px;
        }
        
        .counseling-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .counseling-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .counseling-content {
            padding: 5rem 0;
            background: var(--light-gray);
        }
        
        .services-section, .approach-section, .team-section, .testimonials-section, .resources-section {
            margin-bottom: 4rem;
            background: var(--white);
            padding: 3rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        .services-section h2, .approach-section h2, .team-section h2, .testimonials-section h2, .resources-section h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .services-section h2::after, .approach-section h2::after, .team-section h2::after, .testimonials-section h2::after, .resources-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .service-card {
            background: var(--light);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--secondary);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .service-card h3 {
            color: var(--secondary-dark);
            margin-bottom: 1rem;
        }
        
        .approach-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .approach-card {
            background: var(--light);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .approach-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .approach-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .team-member {
            text-align: center;
            background: var(--light);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .member-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
            border: 3px solid var(--primary);
        }
        
        .team-member h3 {
            color: var(--secondary-dark);
            margin-bottom: 0.5rem;
        }
        
        .member-role {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 1rem;
        }
        
        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .testimonial-card {
            background: var(--light);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            font-size: 5rem;
            color: rgba(32, 80, 114, 0.1);
            font-family: sans-serif;
            line-height: 1;
        }
        
        .testimonial-content {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: var(--dark);
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
        }
        
        .author-info h4 {
            color: var(--primary);
            margin-bottom: 0.3rem;
        }
        
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .resource-card {
            background: var(--light);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .resource-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .resource-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .resource-card h3 {
            color: var(--secondary-dark);
            margin-bottom: 1rem;
        }
        
        .appointment-section {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: var(--white);
            padding: 5rem 0;
            text-align: center;
        }
        
        .appointment-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .appointment-container h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }
        
        .appointment-container p {
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }
        
        .appointment-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .appointment-option {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 10px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .option-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .appointment-option h3 {
            color: var(--white);
            margin-bottom: 1rem;
        }
        
        .appointment-option p {
            margin-bottom: 1.5rem;
        }
        
        .faq-section {
            padding: 5rem 0;
            background: var(--light-gray);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--light-gray);
            border-radius: 5px;
            overflow: hidden;
            background: var(--white);
        }
        
        .faq-question {
            width: 100%;
            padding: 1.5rem;
            background: var(--white);
            border: none;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--secondary-dark);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background: var(--light);
        }
        
        .faq-question i {
            transition: var(--transition);
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: var(--white);
        }
        
        .faq-answer p {
            padding: 0 1.5rem 1.5rem;
            margin: 0;
            color: var(--dark);
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .counseling-hero {
                padding: 6rem 0 3rem;
                margin-top: 70px;
            }
            
            .counseling-hero h1 {
                font-size: 2.2rem;
            }
            
            .services-section, .approach-section, .team-section, .testimonials-section, .resources-section {
                padding: 2rem;
            }
            
            .appointment-options {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .counseling-hero h1 {
                font-size: 1.8rem;
            }
            
            .services-grid, .approach-grid, .team-grid, .testimonials-container, .resources-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Modern Design Variables */
        :root {
            --primary: #205072;
            --primary-dark: #112d32;
            --secondary: #329d9c;
            --secondary-light: #56c2bb;
            --accent: #f6e27a;
            --accent-dark: #e6c44c;
            --light: #f9f9f9;
            --dark: #22223b;
            --gray: #7b8794;
            --light-gray: #f4f6fb;
            --white: #ffffff;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(32, 80, 114, 0.08);
            --shadow-hover: 0 8px 25px rgba(32, 80, 114, 0.15);
            --border-radius: 12px;
        }
        
        /* Modern Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            overflow: hidden;
            
        }
        
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            color: var(--white);
            padding: 0 2rem;
            animation: fadeInUp 1s ease;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }
        
        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            font-weight: 400;
            max-width: 90%;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        /* Modern About Section */
        .about-section {
            padding: 6rem 0;
            background: var(--white);
            position: relative;
        }
        
        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(to bottom, var(--light-gray), transparent);
            z-index: 0;
        }
        
        .about-content {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 3.5rem;
            position: relative;
            z-index: 1;
            margin-top: 2rem;
        }
        
        .about-content p {
            margin-bottom: 1.8rem;
            color: var(--dark);
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        
        .about-content p:last-child {
            margin-bottom: 0;
        }
        
        /* Modern Stats Section */
        .stats-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .stats-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            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.05"><circle cx="50" cy="50" r="40" fill="white"/></svg>');
            animation: rotate 30s linear infinite;
            z-index: 1;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
            z-index: 2;
        }
        
        .stat-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 2.5rem 1.5rem;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        
        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--accent);
            font-family: 'Playfair Display', serif;
            display: block;
            line-height: 1;
        }
        
        .stat-item p {
            font-size: 1.1rem;
            font-weight: 500;
            margin: 0;
            opacity: 0.9;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .about-content {
                padding: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                min-height: 600px;
                height: auto;
                padding: 8rem 0 5rem;
            }
            
            .hero-content h1 {
                font-size: 2.3rem;
            }
            
            .hero-content p {
                font-size: 1rem;
                max-width: 100%;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .about-content {
                padding: 2rem 1.5rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stat-number {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-item {
                padding: 2rem 1rem;
            }
        }

        :root {
            --primary: #205072;
            --primary-dark: #112d32;
            --secondary: #329d9c;
            --secondary-light: #56c2bb;
            --accent: #f6e27a;
            --accent-dark: #e6c44c;
            --light: #f9f9f9;
            --dark: #22223b;
            --gray: #7b8794;
            --light-gray: #f4f6fb;
            --white: #ffffff;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(32, 80, 114, 0.08);
            --shadow-hover: 0 8px 25px rgba(32, 80, 114, 0.15);
            --border-radius: 12px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .section {
            padding: 6rem 0;
            position: relative;
        }
        
        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            color: var(--primary);
            font-family: 'Playfair Display', serif;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        /* Accordion Section */

        
        .accordion-section {
            padding: 6rem 0;
            background: var(--white);
        }
        
        .accordion-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }
        
        .accordion {
            margin-bottom: 2rem;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .accordion-header {
            background: var(--primary);
            color: var(--white);
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        .accordion-header:hover {
            background: var(--primary-dark);
        }
        
        .accordion-header h3 {
            margin: 0;
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        .accordion-header i {
            transition: var(--transition);
        }
        
        .accordion.active .accordion-header i {
            transform: rotate(180deg);
        }
        
        .accordion-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: var(--light-gray);
        }
        
        .accordion.active .accordion-content {
            padding: 2rem;
            max-height: 1000px;
        }
        
        .accordion-content p {
            margin-bottom: 1.5rem;
            color: var(--dark);
            line-height: 1.8;
        }
        
        .accordion-content p:last-child {
            margin-bottom: 0;
        }
        
        /* Focus Areas - Side by Side */
        .focus-areas {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .focus-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .focus-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .focus-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .focus-text h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }
        
        .focus-text p {
            font-size: 0.9rem;
            margin-bottom: 0;
            color: var(--gray);
        }
        
        
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .accordion-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .image-section {
                height: 400px;
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 4rem 0;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .focus-areas {
                grid-template-columns: 1fr;
            }
            
            .accordion-header {
                padding: 1.2rem 1.5rem;
            }
            
            .accordion-header h3 {
                font-size: 1.1rem;
            }
            
            .accordion.active .accordion-content {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .focus-item {
                flex-direction: column;
                text-align: center;
                padding: 1.2rem;
            }
            
            .focus-icon {
                margin: 0 auto;
            }
        }

        /* Add this to your CSS */
nav ul li {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 270px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    z-index: 1002;
    border-radius: 0 0 8px 8px;
    padding: 0.5rem 0;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: #205072;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    transition: background 0.2s;
}

.dropdown-content a:hover {
    background-color: #f4f6fb;
    color: #329d9c;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        width: 100%;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
}

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}


/* Simpler alternative - CSS only */
.dropdown-content {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .dropdown-content {
        max-height: 300px;
        position: absolute;
        z-index: 1003;
    }
}


/* Hero Carousel Styles */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .hero-carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        
        .carousel-slides {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            z-index: 1;
        }
        
        .carousel-slide.active {
            opacity: 1;
            z-index: 2;
        }
        
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7) contrast(1.1) saturate(1.2); /* Custom filter effect */
        }
        
        .carousel-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 3;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .carousel-dot.active {
            background: var(--white);
            transform: scale(1.2);
        }
        
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 2rem;
            z-index: 3;
        }
        
        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            backdrop-filter: blur(5px);
        }
        
        .carousel-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            color: var(--white);
            padding: 0 2rem;
            animation: fadeInUp 1s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .carousel-nav {
                padding: 0 1rem;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .carousel-controls {
                bottom: 20px;
            }
        }

        /* Top Bar Responsive Styles */
.top-bar {
    background: var(--secondary-dark);
    color: var(--white);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* For very small screens */
@media (max-width: 400px) {
    .top-bar {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
}

/* For extremely small screens */
@media (max-width: 350px) {
    .top-bar {
        font-size: 0.75rem;
        letter-spacing: -0.2px;
    }
}

/* Stats Section - Mobile Responsive */
.stats-section {
    background: linear-gradient(rgba(32, 80, 114, 0.92), rgba(50, 157, 156, 0.92)), url('https://images.unsplash.com/photo-1527525443983-6e60c75fff46?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
    width: 100%;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
    border: 1.5px solid var(--gray);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
    margin: 0 auto;
    width: 100%;
    max-width: 200px;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(246, 226, 122, 0.18);
    border-color: var(--accent);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-family: sans-serif;
    text-shadow: 1px 1px 6px rgba(32, 80, 114, 0.10);
    line-height: 1.1;
}

.stat-item p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.3;
    padding: 0 5px;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .stats-section {
        padding: 3rem 0;
        background-attachment: scroll;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
        min-height: 100px;
        max-width: 160px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .stat-item {
        padding: 0.8rem 0.3rem;
        min-height: 90px;
        max-width: 140px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-item p {
        font-size: 0.75rem;
    }
}

/* For extremely small screens */
@media (max-width: 380px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .stat-item {
        max-width: 200px;
    }
}


 /* Stats Section - Fixed Mobile Responsive */
        .stats-section {
            background: linear-gradient(rgba(32, 80, 114, 0.92), rgba(50, 157, 156, 0.92)), url('https://images.unsplash.com/photo-1527525443983-6e60c75fff46?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
            padding: 5rem 0;
            width: 100%;
            overflow: hidden;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 2rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 10px;
        }

        .stat-item {
            padding: 25px 15px;
            background: rgba(255, 255, 255, 0.13);
            border-radius: 10px;
            backdrop-filter: blur(5px);
            transition: var(--transition);
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 140px;
            width: 100%;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(246, 226, 122, 0.18);
            border-color: var(--accent);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--white);
            font-family: 'Playfair Display', serif;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
            line-height: 1.1;
        }

        .stat-item p {
            font-size: 1rem;
            margin: 0;
            line-height: 1.4;
            color: var(--white);
            font-weight: 500;
        }

        /* Mobile-specific adjustments */
        @media (max-width: 992px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .stat-item {
                padding: 20px 10px;
                min-height: 120px;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .stats-section {
                padding: 3rem 0;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
                max-width: 300px;
            }
            
            .stat-item {
                padding: 20px 15px;
                min-height: 110px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .stat-item p {
                font-size: 0.9rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        /* For extremely small screens */
        @media (max-width: 380px) {
            .stats-grid {
                max-width: 280px;
            }
            
            .stat-item {
                padding: 15px 10px;
                min-height: 100px;
            }
            
            .stat-number {
                font-size: 1.8rem;
            }
            
            .stat-item p {
                font-size: 0.85rem;
            }
        }

        /* Add this to your existing CSS */
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1); /* Darkens the image and enhances contrast */
}

/* Optional: Add an overlay for better text readability */
.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

/* Ensure text stays above the overlay */
.hero-content {
    position: relative;
    z-index: 3; /* Higher than the overlay */
}


@media (max-width: 768px) {
    nav.active {
        right: 0;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        padding: 6rem 2rem 2rem;
        background: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    nav.active ~ .container {
        display: none; /* Hide page content when menu is open */
    }
    
    /* Make sure the menu can be scrolled if content is long */
    nav.active ul {
        max-height: calc(100vh - 8rem);
        overflow-y: auto;
    }
    
    /* Dropdown styles for mobile */
    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        width: 100%;
        padding-left: 1rem;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
}


/* Footer Styles */
footer {
    background: var(--secondary-dark);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    position: relative;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    gap: 0.8rem;
}

.contact-icon {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
    text-align: center;
}

.contact-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    
    .social-links {
        justify-content: center;
    }
}


:root {
            --primary: #205072;
            --primary-dark: #112d32;
            --secondary: #329d9c;
            --secondary-dark: #205072;
            --accent: #f6e27a;
            --light: #f9f9f9;
            --dark: #22223b;
            --gray: #bfc9ca;
            --light-gray: #f4f6fb;
            --white: #ffffff;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(32, 80, 114, 0.08);
            --shadow-hover: 0 8px 25px rgba(32, 80, 114, 0.13);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Contact Section Styles */
        .contact-section {
            padding: 5rem 0;
            background: var(--white);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }
        
        .contact-info h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
            font-size: 2.2rem;
        }
        
        .contact-info h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
        }
        
        .contact-info > p {
            margin-bottom: 2.5rem;
            color: var(--dark);
            line-height: 1.8;
        }
        
        .contact-details {
            margin-bottom: 2.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.8rem;
            gap: 1.2rem;
        }
        
        .contact-icon {
            min-width: 24px;
            height: 24px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }
        
        .contact-text {
            flex: 1;
        }
        
        .contact-text h3 {
            color: var(--secondary-dark);
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
        }
        
        .contact-text p {
            color: var(--dark);
            line-height: 1.6;
            margin: 0;
        }
        
        .contact-text a {
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .contact-text a:hover {
            color: var(--primary);
        }
        
        .social-links h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: var(--primary);
            border-radius: 50%;
            color: var(--white);
            font-size: 1.1rem;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .social-link:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        /* Map Section */
        .map-section {
            padding: 3rem 0 5rem;
            background: var(--light-gray);
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-top: 2rem;
            height: 400px;
            background: var(--gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .contact-section {
                padding: 3rem 0;
            }
            
            .contact-info h2 {
                font-size: 1.8rem;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
                gap: 0.8rem;
            }
            
            .contact-icon {
                margin: 0 auto;
            }
            
            .social-icons {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 1rem;
            }
            
            .contact-info h2 {
                font-size: 1.6rem;
            }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 40px 0 20px;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #3498db;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: #3498db;
        }
        
        .footer-column p {
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 14px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: #34495e;
            border-radius: 50%;
            color: #ecf0f1;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background-color: #3498db;
            transform: translateY(-3px);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #3498db;
            padding-left: 5px;
        }
        
        .contact-item {
            display: flex;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            min-width: 30px;
            padding-top: 3px;
            color: #3498db;
        }
        
        .contact-text {
            font-size: 14px;
            line-height: 1.5;
            color: #bdc3c7;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            font-size: 14px;
            color: #95a5a6;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-column {
                width: 100%;
            }
            
            .contact-item {
                flex-direction: row;
                align-items: flex-start;
            }
            
            .contact-text {
                word-break: break-word;
            }
        }
        
        @media (max-width: 480px) {
            .contact-item {
                flex-direction: row;
            }
            
            .contact-text {
                font-size: 13px;
            }
            
            .social-links {
                justify-content: center;
            }
        }

        /* Focus Areas - Responsive Grid */
.focus-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.focus-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-height: 120px;
}

.focus-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.focus-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.focus-text {
    flex: 1;
}

.focus-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.focus-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--gray);
    line-height: 1.4;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .focus-areas {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .focus-item {
        padding: 1.2rem;
        min-height: 100px;
    }
    
    .focus-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .focus-text h4 {
        font-size: 1rem;
    }
    
    .focus-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .focus-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        min-height: auto;
    }
    
    .focus-icon {
        margin: 0 auto;
        margin-bottom: 0.8rem;
    }
}

/* Accordion Content Responsive Fix */
.accordion-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .accordion-container {
        grid-template-columns: 1fr 1fr;
    }
}

.image-section {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fix for accordion focus areas on mobile */
@media (max-width: 768px) {
    .focus-areas {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .focus-item {
        flex-direction: row;
        text-align: left;
        padding: 1rem;
    }
    
    .focus-icon {
        margin: 0;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .focus-text h4 {
        font-size: 1rem;
    }
    
    .focus-text p {
        font-size: 0.85rem;
    }
}

/* Ensure accordion content is visible when active */
.accordion.active .accordion-content {
    display: block;
    max-height: none;
    overflow: visible;
}

/* Mobile-specific accordion improvements */
@media (max-width: 576px) {
    .accordion-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .image-section {
        order: -1;
        height: 300px;
    }
    
    .accordion-header {
        padding: 1.2rem;
    }
    
    .accordion-header h3 {
        font-size: 1.1rem;
    }
    
    .accordion-content {
        padding: 1.2rem !important;
    }
}


/* Fix for accordion focus areas - Responsive for both desktop and mobile */
.focus-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.focus-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.focus-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.focus-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.focus-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.focus-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--gray);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .focus-areas {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .focus-item {
        padding: 1.2rem;
    }
    
    .focus-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .focus-text h4 {
        font-size: 1rem;
    }
    
    .focus-text p {
        font-size: 0.85rem;
    }
}

/* Ensure accordion content displays properly */
.accordion-content {
    display: none;
}

.accordion.active .accordion-content {
    display: block;
}

/* Mobile-specific accordion improvements */
@media (max-width: 576px) {
    .accordion-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .image-section {
        order: -1;
    }
    
    .accordion-header {
        padding: 1.2rem;
    }
    
    .accordion-header h3 {
        font-size: 1.1rem;
    }
    
    .accordion-content {
        padding: 1.2rem !important;
    }
}



/* Specific fix for focus areas grid */
.focus-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .focus-areas {
        grid-template-columns: 1fr;
    }
}

/* Ensure all focus items are visible */
.focus-item {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}


/* Fix for container and overflow issues */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    overflow: visible !important;
}

body, html {
    overflow-x: hidden;
    width: 100%;
}

/* Fix for program cards and other grid items */
.programs-grid, 
.news-grid, 
.events-grid, 
.gallery-grid,
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    overflow: visible;
}

.program-card,
.news-card,
.event-card,
.story-card {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

/* Ensure all sections have proper width */
.section {
    width: 100%;
    overflow: hidden;
}

/* Specific fix for stats section */
.stats-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Fix for footer */
footer {
    width: 100%;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Mobile menu fix */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        width: 100%;
    }
    
    .programs-grid, 
    .news-grid, 
    .events-grid, 
    .gallery-grid,
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-section {
        margin-left: 0;
        margin-right: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
}


