body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #000000; /* Zwarte achtergrond */
    color: #ffffff; /* Witte tekstkleur */
    margin: 0;
    padding: 0;
}

.container {
    background-color: #ffffff; /* Witte achtergrond voor de container */
    color: #000000; /* Zwarte tekstkleur binnen de container */
    max-width: 600px;
    margin: 100px auto; /* Centraal uitlijnen met marge boven en onder */
    padding: 40px;
    border-radius: 12px; /* Afgeronde hoeken voor een moderne look */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Schaduw voor diepte-effect */
}

img {
    max-width: 100%;
    height: auto;
}

.contact-info {
    margin-top: 20px;
    font-size: 1.2em;
}

.contact-info a {
    color: #007aff; /* Apple-blauwe kleur */
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.terms {
    margin-top: 15px;
}

.terms a {
    color: #007aff; /* Apple-blauwe kleur */
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}