* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

header {
    text-align: center;
    padding: 2rem;
    background-color: #0cc41e;
    color: white;
}

header h1 {
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem;
    gap: 2rem;
}

.product {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
    width: 100%;
    max-width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product:hover {
    transform: scale(1.05);
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.product h2 {
    font-size: 1.5rem;
    color: #0d4a13;
    margin-top: 1rem;
}

.product p {
    margin: 1rem 0;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    color: white;
    background-color: #0cc41e;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1010e6;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: #f4f4f9;
    font-size: 0.9rem;
}

/* Responsiveness */
@media (min-width: 600px) {
    .products {
        justify-content: space-around;
    }

    .product {
        max-width: 300px;
    }
}

@media (min-width: 900px) {
    header h1 {
        font-size: 3rem;
    }

    header p {
        font-size: 1.4rem;
    }

    .product h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        font-size: 1.1rem;
    }
}
