/* Container voor de privacy policy */
.container {
    width: 85%;
    max-width: 900px;
    margin: 60px auto;
    background-color: #1e1e1e; /* Donkergrijze achtergrond */
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    text-align: justify;
    border: 1px solid rgba(212, 175, 55, 0.2); /* Subtiele gouden rand */
    margin-top: 10vh;
}

/* Kopteksten */
h1, h2, h3 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #D4AF37; /* Goudkleur */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Paragraafstijl */
p {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 20px;
    text-align: justify;
}

/* Vetgedrukte tekst */
p strong {
    font-weight: bold;
    color: #D4AF37;
}

/* Lijsten */
ul {
    margin-left: 20px;
    list-style-type: disc;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
}

/* Links in de tekst */
a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f0c050;
    text-decoration: underline;
}

strong {
    font-weight: bold;
    color: #D4AF37; /* Donkerblauwe tint voor een professionele uitstraling */
    background-color: #000000; /* Lichtgrijze achtergrond voor subtiele nadruk */
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1em;
}