body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
}

header.hero {
    background: url('https://hillyposthumus.nl/wp-content/uploads/2022/10/Foto-Hilly.jpg') no-repeat center center/cover; /* Vervang met de juiste naam van je afbeelding */
    height: 100vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

header.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Zwart met 30% transparantie */
    z-index: 1; /* Overlay achter de tekst */
}

header.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    position: relative; /* Zorg ervoor dat de tekst boven de overlay komt */
    z-index: 2;
}

header.hero p {
    position: relative; /* Zorg ervoor dat de tekst boven de overlay komt */
    z-index: 2;
}

.cta-button {
    background-color: #58B776; /* Groen accentkleur */
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    position: relative; /* Zorg ervoor dat de knop boven de overlay komt */
    z-index: 2;
}

.section {
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff;
}

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.dienst {
    background-color: #e8f5e9; /* Lichte groene achtergrond */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form input, form textarea {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #58B776; /* Groen accentkleur */
    color: white;
    cursor: pointer;
}

form button:hover {
    background-color: #46a067;
}