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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
}

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

.header {
    background-color: #10b981;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #d1fae5;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 2rem 0;
}

.carousel-item {
    flex: 0 0 80%;
    scroll-snap-align: start;
    background-color: #f0fdf4;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.carousel-item h1, .carousel-item h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.carousel-item p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(to right, #3b82f6, #2563eb);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s, opacity 0.3s;
}

.btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.features, .tips, .testimonials, .places, .eco, .offers, .stories, .products, .blog, .cart, .privacy, .terms {
    padding: 2rem 0;
}

.features-grid, .testimonials-grid, .products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.features-grid figure, .testimonials-grid figure, .products-grid .product-card {
    flex: 1 1 300px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, opacity 0.3s;
}

.features-grid figure:hover, .testimonials-grid figure:hover, .products-grid .product-card:hover {
    transform: translateY(-5px);
    opacity: 0.95;
}

.products-grid .product-card button {
    padding: 10px;
    background: linear-gradient(to right, #16a34a, #15803d);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.products-grid .product-card button:hover {
    transform: scale(1.05);
}

.tips ul {
    list-style: none;
    margin-bottom: 2rem;
}

.tips ul li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tips ul li strong {
    color: #3b82f6;
}

.blog-post {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-post summary {
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    background-color: #f0fdf4;
    border-radius: 8px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cart-table th, .cart-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cart-table button {
    background: linear-gradient(to right, #dc2626, #b91c1c);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
}

.lead-form {
    max-width: 500px;
    margin: 2rem auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lead-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.lead-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.lead-form button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(to right, #16a34a, #15803d);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.lead-form button:hover {
    transform: scale(1.05);
}

.footer {
    background-color: #1f2937;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
}

.footer ul li a:hover {
    color: #d1fae5;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        display: none;
    }

    .nav.active {
        display: block;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #10b981;
        padding: 1rem;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .carousel {
        flex-direction: column;
    }

    .carousel-item {
        flex: 0 0 100%;
    }

    .features-grid, .testimonials-grid, .products-grid {
        flex-direction: column;
    }

    .carousel-item h1, .carousel-item h2 {
        font-size: 1.8rem;
    }

    .carousel-item p {
        font-size: 1rem;
    }
}