body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #2e7d32;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.hero {
    background: url('https://via.placeholder.com/1200x500') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero .btn {
    background-color: #ffc107;
    color: black;
    padding: 10px 20px;
    margin: 10px;
    text-decoration: none;
}

.btn-alt {
    background-color: #4caf50;
    color: white;
}

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

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    width: 300px;
}

footer {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 15px 0;
}
.booking-form {
    max-width: 400px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-form input,
.booking-form textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.booking-form button {
    background-color: #2e7d32;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.booking-form button:hover {
    background-color: #1b5e20;
}

