/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

/* Header and Navigation */
header {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
}

h1 {
    font-size: 24px;
}

/* Hero Section */
.hero {
    background-color: #e8f5e9;
    padding: 60px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 32px;
    color: #388e3c;
}

.hero p {
    margin: 20px 0;
    font-size: 18px;
}

.hero button {
    padding: 10px 20px;
    background-color: #388e3c;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Benefits Section */
.benefits {
    padding: 40px 20px;
    text-align: center;
}

.benefits h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.benefits-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.benefit-item {
    width: 30%;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 20px;
    color: #388e3c;
}

.benefit-item p {
    font-size: 16px;
}

/* Shop Section */
.shop {
    padding: 40px 20px;
    text-align: center;
}

.product {
    margin: 20px auto;
    width: 300px;
}

.product img {
    width: 100%;
    border-radius: 10px;
}

.product h4 {
    margin: 10px 0;
    color: #388e3c;
}

.product p {
    font-size: 16px;
}

/* Footer */
footer {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

/* Contact Section */
.contact {
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #388e3c;
}

.contact p {
    font-size: 16px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    margin-top: 10px;
    text-align: left;
}

input, textarea, button {
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
    width: 100%;
}

button {
    background-color: #388e3c;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background-color: #2e7d32;
}

