body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

.hero {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.hero h2 {
    font-size: 2rem;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.services-details {
    padding: 40px;
    text-align: center;
}

.services-details h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-item {
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.service-item img {
    width: 60%;
    height: auto;
    margin: 0 auto 10px;
    display: block;
    border-radius: 5px;
}


.service-item h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.service-item p {
    font-size: 1rem;
}

.cta {
    margin-top: 30px;
}

.cta a {
    background-color: #333;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
}

.cta a:hover {
    background-color: #444;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    font-size: 1rem;
}

footer a {
    color: white;
    text-decoration: none;
    margin-left: 10px;
}

footer a:hover {
    color: #ccc;
}

form {
    max-width: 600px;
    margin: 20px auto;
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

form label {
    display: block;
    font-size: 1rem;
    margin-bottom: 10px;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #333;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

form button:hover {
    background-color: #444;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .services-details h2 {
        font-size: 1.8rem;
    }

    .service-item {
        margin-bottom: 15px;
    }

    .cta a {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

.formulier-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.contactformulier {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.contactformulier h2 {
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.contactformulier form {
    margin-top: 0;
}
