/* Algemene stijlen voor de hele pagina */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}

/* Stijlen voor de hoofdtitel */
h1 {
    text-align: center;
    color: #333;
}

/* Stijlen voor de sectie headers */
h2 {
    color: #007BFF;
    margin-top: 20px;
    font-size: 1.5em;
}

/* Stijlen voor de content container */
.content {
    margin: 0 auto;
    width: 100%;
    max-width: 85%; /* Vergroot de breedte van de content container */
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Stijlen voor elke sectie */
.section {
    margin-bottom: 20px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* Stijlen voor paragrafen in secties */
.section p {
    line-height: 1.6;
    color: #333;
    text-align: justify;
}
