 /* Root variables for colors and common values */
        :root {
            --color-yellow: #FFEB3B;
            --color-dark-green: #2E7D32;
            --color-white: #F5F5F5;
            --nav-bg: rgba(255, 255, 255, 0.1);
            --nav-border: rgba(255, 255, 255, 0.2);
            --nav-shadow: rgba(0, 0, 0, 0.2);
            --transition-speed: 0.3s;
            --accent-color: var(--color-dark-green);
            --shadow-light: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* Reset and global styles */
        * {
            padding: 0;
            margin: 0;
            list-style-type: none;
            text-decoration: none;
            scroll-behavior: smooth;
            box-sizing: border;
        }

        body {
      background-image: linear-gradient(
                        rgba(0, 0, 0, 0.712),
                        rgba(0, 0, 0, 0.762),
                        rgba(0, 0, 0, 0.785)
                    ),
                    url('img/annie-spratt-nQbaizoO5ew-unsplash.jpg'); /* Placeholder image, replace with your actual image path */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            font-family: 'Inter', sans-serif; /* Using Inter font */
            color: var(--color-white);
            overflow-x: hidden; /* Prevent horizontal scroll */
            display: flex; /* Use flexbox for overall layout */
            flex-direction: column; /* Stack header, main, footer vertically */
        }

        /* Header and Navigation - STRICTLY using user-provided CSS */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center; /* Adjusted from align-content for better vertical alignment */
            height: 100px;
        }

        .nav-wrapper {
            width: 100%;
            display: flex;
            justify-content: center;
            pointer-events: none;
        }

        nav {
            display: flex;
            padding: 20px;
        }

        nav ul {
            display: flex;
            gap: 50px;
            background: var(--nav-bg);
            backdrop-filter: blur(15px);
            border-radius: 30px;
            padding: 15px 100px;
            box-shadow: 0 8px 32px var(--nav-shadow);
            pointer-events: all;
            border: 1px solid var(--nav-border);
            animation: fadeInUp 0.6s ease-in-out;
        }

        .nav-link {
            text-decoration: none;
            color: var(--color-white);
            font-size: 16px;
            transition: all var(--transition-speed) ease;
            padding: 8px 16px;
            border-radius: 20px;
        }

        .nav-link:hover,
        .nav-link.active {
            transition: ease-in var(--transition-speed);
            color: var(--color-yellow);
        }

        nav a {
            position: relative;
            color: var(--color-white);
            font-size: 0.9rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            height: 2px;
            width: 0;
            background: var(--color-yellow);
            transition: width 0.4s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Logo styles - STRICTLY using user-provided CSS */
        .logo {
            padding: 20px;
        }

        .logo span {
            color: var(--color-yellow);
        }

        .logo a {
            font-size: 2rem;
            color: var(--color-dark-green);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-weight: 800;
        }

        /* Get Started button - STRICTLY using user-provided CSS */
        .getstarted {
            padding: 20px;
        }

        .getstarted button {
            background-color: var(--color-dark-green);
            color: var(--color-white);
            height: 50px;
            width: 140px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background-color 0.4s ease-in, color 0.4s ease-in;
        }

        .getstarted button:hover {
            background-color: var(--color-yellow);
            color: var(--color-dark-green);
            font-weight: 600;
        }

        /* Mobile Menu Specifics */
        .mobile-menu-button {
            display: none; /* Hidden by default on desktop */
            font-size: 2rem;
            background: none;
            border: none;
            color: var(--color-dark-green);
            cursor: pointer;
            z-index: 1000; /* Ensure button is clickable */
            padding-right: 20px; /* Add padding for mobile button */
        }

        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

        .mobile-nav-overlay.active {
            display: flex;
            opacity: 1;
        }

        .mobile-nav-overlay ul {
            flex-direction: column;
            gap: 20px;
            background: var(--nav-bg);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 32px var(--nav-shadow);
            border: 1px solid var(--nav-border);
        }

        .mobile-nav-overlay .nav-link {
            font-size: 1.2rem;
            padding: 10px 20px;
        }

        .getstarted-mobile-btn {
            background-color: var(--color-dark-green);
            color: var(--color-white);
            height: 50px;
            width: 180px; /* Wider for mobile */
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background-color 0.4s ease-in, color 0.4s ease-in;
            margin-top: 20px;
        }

        .getstarted-mobile-btn:hover {
            background-color: var(--color-yellow);
            color: var(--color-dark-green);
        }

        /* Keyframes for animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Main Content Styling */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .section-card {
            border-radius: 15px;
            box-shadow: var(--shadow-light);
            margin-bottom: 40px;
            padding: 40px;
            text-align: center;
        }

        .hero-section {
            padding: 80px 20px;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 15px;
            color: #F5F5F5;
            animation: fadeInUp 0.6s ease-in-out;
        }

        .hero-section p {
            font-size: 1.2rem;
            color: #F5F5F5;
            max-width: 800px;
            margin: 0 auto 30px auto;
            animation: fadeInUp 0.6s ease-in-out 0.1s;
        }

        .hero-section .accent-text {
            font-weight: bold;
            color: var(--accent-color); /* Using the defined accent color */
        }

        .hero-section img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: var(--shadow-light);
            margin-bottom: 40px;
            animation: fadeInUp 0.6s ease-in-out 0.2s;
        }

        .btn-primary {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--accent-color); /* Using the defined accent color */
            color: var(--color-white);
            font-weight: bold;
            padding: 15px 0;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 128, 128, 0.3); /* Adjusted shadow to match accent */
            animation: fadeInUp 0.6s ease-in-out 0.3s;
        }

        .btn-primary:hover {
            background-color: var(--color-yellow); /* Hover color for primary button */
            transform: translateY(-3px);
        }

        .urgency-stats-section {
            padding: 60px 20px;
        }

        .urgency-stats-section h2 {
            font-size: 3rem;
            font-weight: bold;
            color: #F5F5F5;
            text-align: center;
            margin-bottom: 30px;
        }

        .urgency-stats-section > p { /* Targeting the intro paragraph */
            font-size: 1.1rem;
            color: #F5F5F5;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 50px auto;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .stat-block {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            box-shadow: var(--shadow-light);
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .stat-block:hover {
            transform: translateY(-5px);
        }

        .stat-block svg {
            width: 60px;
            height: 60px;
            color: var(--accent-color); /* Using the defined accent color */
            margin-bottom: 20px;
        }

        .stat-block h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #F5F5F5;
            margin-bottom: 15px;
        }

        .stat-block p {
            font-size: 1rem;
            color: #F5F5F5;
            margin-bottom: 15px;
        }

        .stat-block .small-stat {
            font-size: 1rem;
            font-weight: bold;
            color: var(--accent-color); /* Using the defined accent color */
        }

        .stat-block .small-stat span {
            font-size: 1.5rem;
        }

        /* New styles for "Your Impact" section */
        .impact-section {
            padding: 60px 20px;
        }

        .impact-section h2 {
            font-size: 3rem;
            font-weight: bold;
            color: #F5F5F5;
            text-align: center;
            margin-bottom: 30px;
        }

        .impact-section > p {
            font-size: 1.1rem;
            color: #F5F5F5;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 50px auto;
        }

        .action-categories-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .action-category-block {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            box-shadow: var(--shadow-light);
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .action-category-block:hover {
            transform: translateY(-5px);
        }

        .action-category-block svg {
            width: 60px;
            height: 60px;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .action-category-block h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #F5F5F5;
            margin-bottom: 15px;
        }

        .action-category-block ul {
            text-align: left;
            margin-bottom: 20px;
            color: #F5F5F5;
            font-size: 1rem;
            padding-left: 20px; /* Indent list items */
        }

        .action-category-block ul li {
            margin-bottom: 8px;
            position: relative;
        }

        .action-category-block ul li::before {
            content: '✓'; /* Checkmark icon */
            color: var(--accent-color);
            position: absolute;
            left: -20px;
        }

        .action-category-block .btn-secondary {
            display: inline-block;
            background-color: var(--color-dark-green);
            color: var(--color-white);
            font-weight: bold;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .action-category-block .btn-secondary:hover {
            background-color: var(--color-yellow);
            color: var(--color-dark-green);
            transform: translateY(-2px);
        }

        /* New styles for "Join the Movement" section */
        .join-movement-section {
            padding: 60px 20px;
        }

        .join-movement-section h2 {
            font-size: 3rem;
            font-weight: bold;
            color: #F5F5F5;
            text-align: center;
            margin-bottom: 30px;
        }

        .join-movement-section > p {
            font-size: 1.1rem;
            color: #F5F5F5;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 50px auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 50px;
        }

        .testimonial-card {
            background: var(--nav-bg); /* Lighter background for testimonials */
            backdrop-filter: blur(5px);
            border-radius: 10px;
            padding: 25px;
            text-align: left;
            border: 1px solid var(--nav-border);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            color:#F5F5F5;
        }

        .testimonial-card p {
            font-style: italic;
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .testimonial-card .author {
            font-weight: bold;
            color: var(--accent-color);
        }

        .community-cta {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            box-shadow: var(--shadow-light);
            padding: 40px;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .community-cta h3 {
            font-size: 2rem;
            font-weight: 600;
            color: #F5F5F5;
            margin-bottom: 20px;
        }

        .community-cta .social-links a {
            display: inline-block;
            margin: 0 15px;
            font-size: 2.5rem;
            color: var(--accent-color);
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .community-cta .social-links a:hover {
            color: var(--color-yellow);
            transform: scale(1.1);
        }

        .community-cta .newsletter-form {
            margin-top: 30px;
        }

        .community-cta .newsletter-form input[type="email"] {
            width: calc(100% - 120px);
            max-width: 350px;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            margin-right: 10px;
        }

        .community-cta .newsletter-form button {
            background-color: var(--accent-color);
            color: var(--color-white);
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .community-cta .newsletter-form button:hover {
            background-color: var(--color-dark-green);
        }

         /* Footer (Copied from landing page) */
        footer {
            background-color: var(--footer-bg);
            color: var(--color-white);
            padding: 40px 20px;
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: auto;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            align-items: flex-start;
            gap: 30px;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }

        .footer-section h4 {
            font-size: 1.1rem;
            color: var(--color-yellow);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .footer-section ul {
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-section ul li a {
            color: var(--color-white);
            transition: color var(--transition-speed) ease;
        }

        .footer-section ul li a:hover {
            color: var(--color-yellow);
        }

        .social-links a {
            color: var(--color-white);
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color var(--transition-speed) ease;
        }

        .social-links a:hover {
            color: var(--color-yellow);
        }

        .footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

 /* Modal Specific Styles */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: var(--section-bg);
            border-radius: 15px;
            box-shadow: var(--shadow-light);
            padding: 30px;
            max-width: 600px;
            width: 90%;
            position: relative;
            text-align: left;
            transform: translateY(-20px);
            transition: transform 0.3s ease-in-out;
        }

        .modal-overlay.active .modal-content {
            transform: translateY(0);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }

        .modal-header h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-color-primary);
        }

        .modal-close-btn {
            background: none;
            border: none;
            font-size: 2rem;
            color: #aaa;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .modal-close-btn:hover {
            color: #555;
        }

        .modal-body p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-color-secondary);
            margin-bottom: 15px;
        }

        .modal-body ul {
            list-style: disc;
            padding-left: 25px;
            margin-bottom: 15px;
            color: var(--text-color-secondary);
        }

        .modal-body ul li {
            margin-bottom: 8px;
        }

        .modal-body strong {
            color: var(--accent-color);
        }

        .modal-footer {
            text-align: center;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .modal-footer .btn-primary {
            font-size: 1rem;
            padding: 10px 25px;
        }
    
        /* Responsive Adjustments */
        @media (min-width: 768px) {
            .mobile-menu-button {
                display: none;
            }
            header nav ul {
                display: flex; /* Ensure desktop nav is visible */
            }
            .stats-grid, .action-categories-grid {
                grid-template-columns: 1fr 1fr;
            }
            .testimonials-grid {
                grid-template-columns: 1fr 1fr;
            }
            footer .footer-content {
                flex-direction: row;
            }
            footer p {
                margin-bottom: 0;
            }
        }

        @media (min-width: 1024px) {
            .action-categories-grid {
                grid-template-columns: 1fr 1fr 1fr; /* 3 columns on larger screens */
            }
        }

        @media (max-width: 767px) {
            header nav ul {
                display: none; /* Hide desktop nav on mobile */
            }
            .mobile-menu-button {
                display: block; /* Show mobile menu button */
            }
            header .nav-wrapper {
                justify-content: flex-end; /* Align nav-wrapper to the right for mobile */
            }
            nav {
                padding: 0; /* Remove padding from nav itself on mobile */
            }
            .logo {
                padding: 20px; /* Keep logo padding for consistent spacing */
            }
            .getstarted {
                display: none; /* Hide desktop get started button on mobile */
            }
            .hero-section h1, .urgency-stats-section h2, .impact-section h2, .join-movement-section h2 {
                font-size: 2.5rem;
            }
            .hero-section p, .urgency-stats-section > p, .impact-section > p, .join-movement-section > p {
                font-size: 1rem;
            }
            .stat-block h3, .action-category-block h3 {
                font-size: 1.5rem;
            }
            .community-cta .newsletter-form input[type="email"] {
                width: 100%;
                margin-right: 0;
                margin-bottom: 10px;
            }
            .community-cta .newsletter-form button {
                width: 100%;
            }
        }
