/* Pagina-achtergrond */
body {
    background-color: #f5f5f5; /* Zelfde kleur als de achtergrond van main */
    font-family: Arial, sans-serif; /* Optioneel: uniforme fontstijl */
}

/* Over Ons Specifieke Stijlen */
main {
    flex: 1;
    background-color: transparent; /* Geen aparte achtergrond voor main */
    color: #333; /* Donkere tekstkleur voor contrast */
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    border-radius: 10px;
}

/* Secties met witte achtergrond */
section {
    background-color: #fff; /* Witte achtergrond voor tekstsecties */
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtiele schaduw */
    padding: 1.5rem;
    margin-bottom: 2rem;
}

section h1, section h2 {
    color: #111; /* Donkere titels */
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

section h3 {
    color: #333; /* Lichtere subtitels */
    margin-top: 1rem;
    font-size: 1.2rem;
}

main p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Opsommingen */
main ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

main ul li {
    margin-bottom: 0.5rem;
}

/* Links */
main a {
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #111; /* Donkere kleur bij hover */
}
