body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* Lichtgrijze achtergrond voor een rustige uitstraling */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #4CAF50; /* Rustig groen voor de header */
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

/* Navigatie menu */
nav {
    margin-top: 10px;
}

nav a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Product sectie */
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.product {
    background-color: white;
    margin: 10px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    box-sizing: border-box;
    text-align: center;
}

.product img {
    max-width: 100%;
    border-radius: 5px;
}

.product h2 {
    font-size: 20px;
    margin: 10px 0;
}

.product p {
    font-size: 16px;
    color: #666; /* Lichtere grijs voor tekst */
}

.product button {
    padding: 10px 15px;
    background-color: #A8D5BA; /* Zachter groen voor knoppen */
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.product button:hover {
    background-color: #6FBF8D; /* Donkerder maar nog steeds zacht groen voor hover-effect */
}

/* Footer */
footer {
    background-color: #444; /* Donkergrijs voor footer */
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

/* Optie selectie */
.opties {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.opties, h2 {
    text-align: center;
}

.optie {
    background-color: white;
    margin: 10px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    box-sizing: border-box;
    text-align: center;
}

.optie img {
    max-width: 100%;
    border-radius: 5px;
}

.optie h2 {
    font-size: 20px;
    margin: 10px 0;
}

.optie p {
    font-size: 16px;
    color: #666; /* Lichtere grijs voor tekst */
}

.optie button {
    padding: 10px 15px;
    background-color: #A8D5BA; /* Zachter groen voor knoppen */
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.optie button:hover {
    background-color: #6FBF8D; /* Donkerder maar nog steeds zacht groen voor hover-effect */
}
