/* Algemene opmaak reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font-face om Nunito Sans te gebruiken */
@font-face {
    font-family: 'Nunito Sans';
    src: url('nunitosans.woff2') format('woff2');
}

/* Algemene stijlen */
body {
    font-family: 'Nunito Sans', sans-serif;
}

.header {
    background-color: black;
    padding: 15px;
    text-align: center;
}

.header .logo img {
    height: 40px;
}

/* Inhoudssectie */
.content {
    display: flex;
    align-items: stretch; /* Zorgt ervoor dat beide kolommen dezelfde hoogte hebben */
    background-color: white;
    padding: 20px;
}

/* Linkerkolom */
.content .image {
    flex: 1;
    display: flex;
    align-items: flex-start; /* Zorgt ervoor dat de afbeelding bovenaan uitlijnt */
}

.content .image img {
    width: 100%;
    height: auto;
}

/* Rechterkolom */
.content .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Verdeel de ruimte tussen text-top en text-bottom */
    padding: 20px;
    text-align: center;
    font-size: 18px; /* Basisgrootte voor tekst */
    /* Pas de margin-top aan om de tekst lager te plaatsen */
    margin-top: 40px; /* Verlaag deze waarde indien nodig */

}

/* Bovenste tekstgedeelte */
.text-top {
    margin-bottom: auto; /* Duwt het onderste deel naar beneden */
}

/* Onderste tekstgedeelte */
.text-bottom {
    align-self: flex-start; /* Zorgt ervoor dat de sectie begint bij de onderkant van de rechterkolom */
    margin-bottom: 100px; /* Verklein de ruimte onderaan */
}

/* Contactinformatie */
.contact-info {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.contact-logo {
    max-width: 280px;
    margin-right: 10px;
}

.contact-details {
    flex: 1;
    text-align: left;
}

.contact-details img {
    height: 1em;
    vertical-align: middle;
    margin-right: 5px;
}

/* Mobiele weergave */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .text {
        align-items: center;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-logo {
        margin-bottom: 10px;
        width: 100%;
        max-width: 150px;
    }
    
    .content .text {
        /* Pas de margin-top aan om de tekst lager te plaatsen */
        margin-top: 0px; /* Verlaag deze waarde indien nodig */

    }

}
