 body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            line-height: 1.6;
            color: #333;
            background-color: #000000; 
        }

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

        
        .navbar {
            background-color: #004610d0; 
            padding: 15px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .navbar-brand {
            font-size: 2.5em;
            font-weight: 700;
            color: #ffffff; 
            text-decoration: none;
        }

        .nav-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: #ffffff;
            font-size: 25px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #c9edff; 
        }

       
        .hero-section {
            position: relative;
            height: 600px; 
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            overflow: hidden; 
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('hero.jpeg'); 
            background-size: cover;
            background-position: center;
            filter: blur(5px); 
            transform: scale(1.05); 
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2; 
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.4); 
            border-radius: 10px;
        }

        .hero-content h1 {
            font-size: 3.5em;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content .cta-button {
            background-color: #213d29; 
            color: #c7fffd; 
            padding: 15px 30px;
            border:#dbffea;
            border-radius: 50px; 
            font-size: 1.2em;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .hero-content .cta-button:hover {
            background-color: #ffffff; 
            transform: translateY(-3px);
            color: #000000;
        }

       
        .section {
            padding: 60px 0;
            text-align: center;
        }

        .section h2 {
            font-size: 2.5em;
            margin-bottom: 40px;
            color: #333;
            font-weight: 600;
        }

        
        .advantages-section {
            background-color: #f5f5dc; 
        }

        .advantages-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .advantages-list li {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            width: calc(33% - 40px); 
            min-width: 280px; 
            text-align: left;
            transition: transform 0.3s ease;
        }

        .advantages-list li:hover {
            transform: translateY(-5px);
        }

        .advantages-list li h3 {
            color: #03a9f4; /* Blue */
            margin-top: 0;
            font-size: 1.4em;
            margin-bottom: 10px;
        }

        .advantages-list li p {
            color: #666;
            font-size: 0.95em;
        }

       
        .environmental-benefits-section {
            background-color: #f0fff0; 
        }

        .environmental-benefits-section p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1em;
            color: #444;
            line-height: 1.8;
        }

        
        .footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 30px 0;
            font-size: 0.9em;
        }

        
        @media (max-width: 992px) {
            .nav-links {
                flex-direction: column;
                align-items: flex-end;
                margin-top: 15px;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .navbar .container {
                flex-direction: column;
                align-items: center; 
            }
            .hero-content h1 {
                font-size: 2.8em;
            }
            .advantages-list li {
                width: calc(50% - 40px); 
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                height: 450px; 
            }
            .hero-content h1 {
                font-size: 2em;
            }
            .hero-content .cta-button {
                padding: 12px 25px;
                font-size: 1em;
            }
            .section {
                padding: 40px 0;
            }
            .section h2 {
                font-size: 2em;
                margin-bottom: 30px;
            }
            .advantages-list li {
                width: 90%; 
            }
        }

        @media (max-width: 480px) {
            .navbar-brand {
                font-size: 1.5em;
            }
            .nav-links {
                align-items: center;
            }
            .hero-content {
                padding: 15px;
            }
            .hero-content h1 {
                font-size: 1.7em;
            }
            .hero-content .cta-button {
                font-size: 0.9em;
            }
        }