body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f6f8;
    color: #333;
}

header {
    background: #0a2540;
    color: white;
    padding: 40px;
    text-align: center;
    position: relative; /* nodig voor positionering logo */
}

nav {
    background: #1e3a5f;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

section {
    padding: 40px;
    max-width: 900px;
    margin: auto;
}

h2 {
    color: #0a2540;
}

.info-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

ul {
    line-height: 1.8;
}

footer {
    background: #0a2540;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px; /* pas aan naar wens */
}