        :root {
            --earth-green: #2C7A4B;
            --warm-terracotta: #D9733B;
            --soft-beige: #F6F2EC;
            --dark-text: #1F2D2E;
            --light-text: #5A6C6D;
            --white: #FFFFFF;
            --shadow: rgba(44, 122, 75, 0.1);
            --card-bg: #FFFFFF;
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-text);
            background-color: #F3F8F5;
            line-height: 1.6;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

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

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            color: var(--earth-green);
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--earth-green);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: #1f5a38;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px var(--shadow);
        }

        .btn-secondary {
            background-color: var(--warm-terracotta);
            color: var(--white);
        }

        .btn-secondary:hover {
            background-color: #c45d2a;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(217, 115, 59, 0.2);
        }

        /* Hero Section */
        .hero {
            padding-top: 150px;
            padding-bottom: 100px;
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero/home.webp');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        /* What We Do Section */
        .what-we-do {
            background-color: #F3F8F5;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .card {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: 0 10px 30px var(--shadow);
            transition: var(--transition);
            border-top: 5px solid var(--earth-green);
            text-align: center;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(44, 122, 75, 0.15);
        }

        .card i {
            font-size: 2.5rem;
            color: var(--earth-green);
            margin-bottom: 20px;
        }

        .card h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--earth-green);
        }

        .card p {
            color: var(--light-text);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .card .btn {
            padding: 8px 20px;
            font-size: 0.9rem;
        }

        /* Impact Section */
        .impact {
            background-color: var(--earth-green);
            color: var(--white);
        }

        .impact .section-title {
            color: var(--white);
        }

        .impact-stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            text-align: center;
        }

        .stat-item {
            margin: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Event Section */
        .event {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/home/wado.webp');
            background-size: cover;
            background-position: center;
            color: var(--white);
        }

        .event-content {
            max-width: 600px;
        }

        .event h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .event p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            height: 250px;
            border-radius: var(--border-radius);
            overflow: hidden;
            cursor: pointer;
            transition: var(--transition);
        }

        .gallery-item:hover {
            transform: scale(1.03);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .close-lightbox {
            position: absolute;
            top: 20px;
            right: 30px;
            color: var(--white);
            font-size: 2.5rem;
            cursor: pointer;
        }

        /* Join Form Section */
        .join-form {
            background-color: #F3F8F5;
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--soft-beige);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--earth-green);
            box-shadow: 0 0 0 3px rgba(44, 122, 75, 0.1);
        }

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

        /* Testimonials Section */
        .testimonial-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border: 3px solid var(--warm-terracotta);
        }

        .testimonial-slide {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px;
            text-align: center;
        }

        .testimonial-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--earth-green);
            margin-bottom: 25px;
        }

        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            color: var(--light-text);
            margin-bottom: 20px;
            max-width: 700px;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--earth-green);
        }


        /* Mobile Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.3rem;
            }

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

            .impact-stats {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 768px) {

            .hero {
                padding-top: 120px;
                padding-bottom: 80px;
            }

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

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .hero-buttons .btn {
                width: 80%;
                max-width: 300px;
            }

            section {
                padding: 60px 0;
            }

            .form-container {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.7rem;
            }

            .section-title {
                font-size: 1.7rem;
            }

            .card {
                padding: 20px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }