body {
    background-image: url('background.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

/* De rest van je bestaande CSS code komt hieronder */

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Lichtere achtergrond voor leesbaarheid */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container .logo {
    max-height: 60px;
    margin-right: 15px; /* Voeg wat ruimte toe tussen de logo's als er twee zijn */
}

/* Als je meerdere logo's hebt en ze aan de uiteinden wilt, kun je dit gebruiken: */
.header-container img:first-child {
    margin-right: auto; /* Duwt het eerste logo naar links */
}
.header-container img:last-child {
    margin-left: auto; /* Duwt het laatste logo naar rechts */
}


.main-content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    min-height: calc(100vh - 120px); /* Aanpassen op basis van header/footer hoogte */
}

.content-left {
    flex: 1;
    padding-right: 20px;
    /* Hier kun je stijlen toevoegen voor de linkerhelft, mocht je die vullen */
}

.content-right {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparante achtergrond */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
}

.content-right h2 {
    color: #003366; /* Donkerblauw */
    margin-bottom: 20px;
    font-size: 2em;
}

.content-right p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.start-button {
    display: inline-block;
    background-color: #007bff; /* Een mooie blauwe kleur */
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.start-button:hover {
    background-color: #0056b3; /* Donkerder blauw bij hover */
}


.info-section, .hap-section, .seh-section {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    margin: 30px auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
}

.info-section:nth-child(even) { /* Voor afwisselende layout */
    flex-direction: row-reverse;
}

.info-text, .hap-text, .seh-text {
    flex: 1;
    padding: 0 20px;
}

.info-image, .hap-image, .seh-image {
    flex: 1;
    text-align: center;
}

.info-image img, .hap-image img, .seh-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.info-section h2, .hap-section h2, .seh-section h2 {
    color: #003366;
    margin-bottom: 15px;
}

.info-section p, .hap-section p, .seh-section p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
}

.link-button {
    display: inline-block;
    background-color: #6c757d; /* Grijze kleur voor algemene links */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.link-button:hover {
    background-color: #5a6268;
}

/* Specifieke stijlen voor SEH sectie */
.seh-section .seh-text p {
    font-size: 1.2em;
    font-weight: bold;
    color: #dc3545; /* Rood voor spoedgevallen */
}


.contact-section {
    background-color: rgba(255, 255, 255, 0.9);
    margin: 50px auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    text-align: center;
}

.contact-section h2 {
    color: #003366;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 400px; /* Beperk de breedte van input velden */
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical; /* Maakt verticaal resizen mogelijk */
}

.submit-button {
    background-color: #28a745; /* Groene kleur voor verzendknop */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.submit-button:hover {
    background-color: #218838;
}

/* Responsiviteit */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .header-container .logo {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .main-content-container {
        flex-direction: column;
    }

    .content-left, .content-right {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .info-section, .hap-section, .seh-section {
        flex-direction: column;
        text-align: center;
    }

    .info-section:nth-child(even) {
        flex-direction: column; /* Ook voor afwisselende secties */
    }

    .info-text, .hap-text, .seh-text {
        padding: 0;
        margin-bottom: 20px;
    }
}