/* Algemene instellingen */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
    background-color: #F9F6F1;
    color: #2D2D2D;
    line-height: 1.6;

    display: flex;
    justify-content: center;   /* horizontaal centreren */
    align-items: center;       /* verticaal centreren */
    min-height: 100vh;
}

/* Logo */
.logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-bottom: 0px;
}

/* Container */
.container {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;            /* geen extra ruimte boven/onder meer */
    padding: 40px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Titel */
h1 {
    font-size: 2.4em;
    color: #0D5C5C;
    margin-bottom: 20px;
}

/* Bedrijfsinformatie sectie */
.company-info {
    font-size: 1.1rem;
    margin-top: 10px;   /* was 30px */
}

/* E-mail link stijl */
.email {
    color: #0D5C5C;
    font-weight: bold;
    text-decoration: none;
}

.email:hover {
    text-decoration: underline;
}

/* Responsiveness voor mobiel */
@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2em;
    }

    .logo {
        max-width: 160px;
        margin-bottom: 20px;
    }

    .company-info {
        font-size: 1rem;
    }
}
/* Kleine subtiele juridische links */
.legal-links {
    margin-top: 25px;
    font-size: 0.85rem;
    color: #888;
}

.legal-links a {
    color: #888;
    text-decoration: none;
}

.legal-links a:hover {
    text-decoration: underline;
}

.legal-links .divider {
    margin: 0 6px;
    color: #BBB;
    font-weight: normal;
}

.legal-links br {
    line-height: 1.2;
}

