body {
    margin: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2f5d50;
    padding: 15px 50px;
    color: white;
}

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

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: #f4f9f4;
}

.hero button {
    padding: 10px 20px;
    background: #2f5d50;
    color: white;
    border: none;
    cursor: pointer;
}

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

.product-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    border: 1px solid #ddd;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
}

.product-card button {
    margin-top: 10px;
    padding: 8px;
    background: #2f5d50;
    color: white;
    border: none;
    cursor: pointer;
}

form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input, form textarea {
    padding: 10px;
    border: 1px solid #ccc;
}

form button {
    padding: 10px;
    background: #2f5d50;
    color: white;
    border: none;
    cursor: pointer;
}

footer {
    background: #2f5d50;
    color: white;
    text-align: center;
    padding: 20px;
}
