/* Algemene stijl voor de body */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Container voor de inhoud van de pagina */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 20px;
}

/* Header van de Privacy Policy */
h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

/* Subheaders voor secties */
h2 {
    font-size: 1.8em;
    color: #333;
    margin-top: 20px;
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* Standaard paragrafen */
p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Link stijl */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Opsommingen */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 10px;
}

/* Footer sectie */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    border-radius: 0 0 8px 8px;
}

/* Footer links */
footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Kleine tekst onderaan de pagina */
small {
    font-size: 0.9em;
    color: #888;
}

/* Knop voor contact/afsluiting */
button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}
