        /* Reset and base styles */
        * {

            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            /* Primary font */
        }


        html,
        body {
            min-height: 100%;
            display: flex;
            flex-direction: column;
        }

        body {
            margin: 0;
            overflow-x: hidden;
            line-height: 1.6;

            flex-grow: 1;
            display: flex;
            flex-direction: column;


        }

        main {
            /* margin: 0.5rem 0; */
            /* Adds margin only to the main content */
            padding: 2rem;
            margin-top: -30px;
            /* Optional: Ensures spacing inside main */
        }

        .container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Navigation */
        nav {
            background-color: #2f7c31;
            padding: 1rem;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .nav-logo {
            width: 60px;
            height: 60px;
            z-index: 2;
        }

        .nav-links {
            display: flex;
            gap: 1rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
            font-size: 14px;
            padding: 0.5rem;
        }

        .nav-links a:hover {
            opacity: 0.8;
        }

        .nav-links a.active {
            border-bottom: 2px solid white;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 2;
            transition: transform 0.3s ease;

        }

    

        /* Hero section */
        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            padding: 4rem 1rem;
            /* background-color: #f9f9f9; */


            /* display: flex; */
            /* flex-wrap: wrap; */
            /* Allows content to wrap on smaller screens */
            /* justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px; */
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;


        }

        .hero-content h1 {
            color: #2f7c31;
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
            line-height: 1.2;


        }

        .hero-content p {
            color: #666;
            margin-bottom: 1.5rem;
            font-size: clamp(1rem, 1.2vw, 1.2rem);
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            font-weight: 600;
            /* Semi-bold */
        }

        .button {
            width: 248px;
            padding: 0.8rem 4.8rem;
            background-color: #2f7c31;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color 0.3s;
            font-size: clamp(0.9rem, 1vw, 1.1rem);
        }

        .button:hover {
            background-color: #246526;
        }

        .hero-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .hero-images img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            aspect-ratio: 16/9;
            object-fit: cover;
        }

        .hero-images img:first-child {
            grid-column: 1 / -1;
        }



        @media (max-width: 1024px) {
            .hero {
                flex-direction: column;
            }

            .hero-content {
                max-width: 90%;
            }

            .hero-images img {
                width: 80%;
                /* Reduce size for medium screens */
            }
        }


        @media (max-width: 768px) {
            .hero-images img {
                width: 60%;
                /* Further reduce size for smaller screens */
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 10px;
            }

            .hero-images img {
                width: 90%;
                /* Adjust for very small screens */
            }

            .hero-buttons a {
                display: block;
                margin-bottom: 10px;
            }
        }






        /* Stats section */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            padding: 3rem 1rem;
            background-color: #fff;


        }

        .stat-card {
            height: 201px;
            background-color: #A0522D;
            color: white;
            padding: 1.2rem;
            border-radius: 8px;
            text-align: left;
            font-size: 20px;
            transition: transform 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-card h3 {
            font-size: clamp(2rem, 3vw, 2.5rem);
            margin-bottom: 0.5rem;
        }

        /* Impact section */
        .impact {
            padding: 4rem 1rem;
            /* background-color: #f9f9f9; */
        }

        .impact h2 {
            color: #2f7c31;
            font-size: clamp(1.4rem, 0.5vw, 0.5rem);
            margin-bottom: 1.5rem;
        }

        .impact p {
            margin-bottom: 2rem;
            max-width: 100%;
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .impact-card {
            height: 180px;
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            text-align: left;
            transition: transform 0.3s;
        }

        .impact-card:hover {
            transform: translateY(-5px);
        }

        .impact-card h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: #2f7c31;
        }

        /* Testimonials */
        .testimonials {
            padding: 0.5rem 1rem;
            background-color: white;
        }

        .testimonials h2 {
            color: #2f7c31;
            font-size: clamp(1.8rem, 2.5vw, 2.5rem);
            margin-bottom: 1rem;
        }

        .testimonials>p {
            margin-bottom: 2rem;
        }

        .testimonial-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            padding: 1rem;
        }

        .testimonial-card {
            background-color: #ffffff;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .stars {
            color: #ffd700;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .testimonial-profile {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .testimonial-profile img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Footer */
        footer {
            background-color: #ffffff;
            padding: 1rem 0rem 0rem;
            height: 200px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0rem;
            padding: 0rem rem;
            justify-content: center;
            /* Centers the grid items */
            text-align: center;
            /* Centers the text inside the grid items */
        }

        .footer-content h3 {
            color: #2f7c31;
            margin-bottom: 1rem;
        }

        .footer-content p {
            margin-bottom: 0.5rem;
            color: #000000;
            font-weight: 600;
        }

        /* Responsive Design */


        @media screen and (max-width: 768px) {
            .hero-content {
                align-items: center;
                /* Keeps alignment consistent */
            }

            .hero-buttons {
                flex-direction: column;
                /* Stacks buttons on smaller screens */
            }
        }


        @media screen and (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 2rem 1rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .nav-links {
                gap: 1rem;
            }
        }

        @media screen and (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: #2f7c31;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                padding: 2rem;
            }

            .nav-links.active {
                display: flex;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .hero-images {
                grid-template-columns: 1fr;
            }

            .stats {
                padding: 2rem 1rem;
            }

            .impact,
            .testimonials {
                padding: 2rem 1rem;
            }
        }

        @media screen and (max-width: 480px) {
            .container {
                padding: 0 0.5rem;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .nav-wrapper {
                padding: 0 0.5rem;
            }

            .footer-content {
                padding: 1rem;
                text-align: center;
            }

            .testimonial-profile {
                flex-direction: column;
                text-align: center;
            }
        }