/* Basis instellingen */
body {
    background-color: #002654; /* De donkerblauwe rand */
    margin: 0;
    padding: 20px; /* Creëert de dikte van de rand */
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
}

.page-border {
    background-color: #f2eee4; /* De beige achtergrond */
    width: 100%;
    max-width: 900px;
    min-height: 90vh;
    padding: 60px;
    box-sizing: border-box;
}

/* Tekst styling */
h1 { letter-spacing: 5px; margin-bottom: 0; }
h2 { font-weight: bold; font-size: 2rem; }

.announcement {
    text-align: center;
    margin: 40px 0;
}

hr {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 30px 0;
}

/* De Layout voor de onderkant */
.contact-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.contact-info {
    flex: 1;
    line-height: 1.6;
}

.map-container {
    flex: 1;
}
