        /* style.css */
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Color Variables */
        :root {
            --primary-blue: #1e3a8a;
            --forest-green: #065f46;
            --warm-white: #fefefe;
            --sunshine-yellow: #f59e0b;
            --light-gray: #f3f4f6;
        }
        
        /* Forest Green Theme Override */
        :root {
            --theme-color: var(--forest-green);
        }

        /* Background with static image */
        body {
            background: linear-gradient(rgba(6, 95, 70, 0.8), rgba(6, 95, 70, 0.8)), url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?ixlib=rb-4.0.3') center/cover fixed;
        }
        
        /* Navigation */
        .navbar {
            background: rgba(254, 254, 254, 0.7);
            padding: 1rem 5%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--forest-green);
            backdrop-filter: blur(10px);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--forest-green);
        }

        .logo-img {
            height: 50px;
            max-width: 200px;
            margin-right: 10px;
        }
        
        .logo-text {
            display: flex;
            align-items: center;
            height: 50px;
            line-height: 50px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--forest-green);
        }

        .donate-btn {
            background: linear-gradient(135deg, var(--forest-green), #087f5b);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s;
            box-shadow: 0 4px 15px rgba(6, 95, 70, 0.4);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .donate-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
            z-index: -1;
        }
        
        .donate-btn:hover::before {
            left: 100%;
        }

        .donate-btn:hover {
            background: linear-gradient(135deg, #054d3a, var(--forest-green));
            box-shadow: 0 6px 20px rgba(6, 95, 70, 0.6);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: transparent;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 60px;
        }
        
        .hero-content {
            backdrop-filter: blur(10px);
            background: rgba(30, 58, 138, 0.2);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: transform 0.3s, background 0.3s;
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: inline-block;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
            z-index: -1;
        }
        
        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--forest-green), #087f5b);
            color: white;
            box-shadow: 0 4px 15px rgba(6, 95, 70, 0.4);
        }

        .btn-primary:hover {
            box-shadow: 0 6px 20px rgba(6, 95, 70, 0.6);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }
        
        .volunteer-btn {
            background: linear-gradient(135deg, var(--sunshine-yellow), #e69008);
            color: white;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
        }
        
        .volunteer-btn:hover {
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
            transform: translateY(-2px);
        }
        
        .donate-btn-cta {
            background: transparent;
            color: white;
            border: 2px solid white;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }
        
        .donate-btn-cta:hover {
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        /* Impact Stats */
        .impact-stats {
            background: transparent;
            padding: 4rem 2rem;
            text-align: center;
        }
        
        .stats-container {
            backdrop-filter: blur(10px);
            background: rgba(30, 58, 138, 0.2);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .stat-item {
            flex: 1;
            min-width: 250px;
            text-align: center;
        }
        
        .stat-visual {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }
        
        .stat-image {
            width: 200px;
            height: 200px;
            object-fit: contain;
            filter: none; /* Remove filter that was inverting colors */
            background: transparent; /* Ensure transparent background */
        }

        .stat-label {
            color: white;
            font-size: 1.1rem;
            font-weight: bold;
        }

        /* Programs Section */
        .programs {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            background: transparent;
        }
        
        .programs-grid {
            backdrop-filter: blur(10px);
            background: rgba(30, 58, 138, 0.2);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-size: 2.2rem;
            font-weight: bold;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .program-card {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .program-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.4);
        }

        .program-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .program-card h3 {
            color: var(--forest-green);
            margin-bottom: 1rem;
        }
        
        .learn-more {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .learn-more::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
            z-index: -1;
        }
        
        .learn-more:hover::before {
            left: 100%;
        }
        
        .learn-more:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(30, 58, 138, 0.3);
        }

        /* Featured Story */
        .featured-story {
            background: transparent;
            color: white;
            padding: 5rem 2rem;
        }

        .story-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            backdrop-filter: blur(10px);
            background: rgba(30, 58, 138, 0.2);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .story-content h2 {
            margin-bottom: 1rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-size: 1.8rem;
            font-weight: bold;
        }

        .story-image {
            background: #ddd;
            height: 300px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            backdrop-filter: blur(10px);
            background: rgba(30, 58, 138, 0.2);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* CTA Banner */
        .cta-banner {
            background: transparent;
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }
        
        .cta-banner h2 {
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }
        
        .cta-banner .cta-buttons {
            backdrop-filter: blur(10px);
            background: rgba(30, 58, 138, 0.2);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: inline-block;
        }

        /* Footer */
        footer {
            background: var(--forest-green);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        
        .footer-section {
            backdrop-filter: blur(10px);
            background: rgba(30, 58, 138, 0.2);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: var(--sunshine-yellow);
        }

        .newsletter input {
            padding: 0.5rem;
            width: 100%;
            margin-bottom: 1rem;
            border: none;
            border-radius: 4px;
            backdrop-filter: blur(5px);
            background: rgba(255, 255, 255, 0.7);
        }
        
        .newsletter-btn {
            background: linear-gradient(135deg, var(--sunshine-yellow), #e69008);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .newsletter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
            z-index: -1;
        }
        
        .newsletter-btn:hover::before {
            left: 100%;
        }
        
        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
        }
        
        .back-to-home-btn {
            display: inline-block;
            text-decoration: none;
            color: white;
            background: linear-gradient(135deg, var(--sunshine-yellow), #e69008);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .back-to-home-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
            z-index: -1;
        }
        
        .back-to-home-btn:hover::before {
            left: 100%;
        }
        
        .back-to-home-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            color: white;
            text-decoration: none;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .story-container {
                grid-template-columns: 1fr;
            }

            .stats-container {
                flex-direction: column;
            }
        }