/* ==========================================================================
   privacy.css - Medium Leander Privacy & Voorwaarden (Gouden Box Stijl)
   ========================================================================== */

:root {
    --gold: #c5a059;              /* De gouden kleur uit je screenshot */
    --text-main: #ffffff;         /* Witte tekst voor leesbaarheid op donker */
    --text-sub: #cccccc;          /* Lichtgrijs voor paragraaftekst */
    --box-bg: rgba(0, 0, 0, 0.4); /* Subtiele donkere transparante laag */
}

/* Zorg dat de main container goed in je pagina staat */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header sectie */
.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.terms-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.terms-header em {
    color: var(--gold);
    font-style: italic;
    font-weight: 600;
}

/* DE GOUDEN BOXEN (Aangepast voor jouw donkere thema) */
.terms-section {
    background: var(--box-bg);    /* Blendt in met je donkere site */
    border: 1px solid var(--gold); /* Het dunne gouden kader */
    border-radius: 12px;          /* De zachte hoeken */
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5); /* Diepte-effect */
}

/* Titels in de box */
.terms-section h2 {
    color: var(--gold);           /* Goud */
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3); /* Subtiel lijntje onder titel */
    padding-bottom: 0.5rem;
}

/* Tekst in de box */
.terms-section p {
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-sub);      /* Lichtgrijs voor leesbaarheid */
}

/* Lijstjes in de box */
.terms-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: var(--text-sub);
}

.terms-section li {
    margin-bottom: 0.5rem;
}

/* Links in de tekst */
.terms-section a {
    color: var(--gold);
    text-decoration: underline;
}

/* Responsive voor mobiel */
@media (max-width: 600px) {
    .terms-section {
        padding: 1.5rem;
    }
    .terms-header h1 {
        font-size: 1.7rem;
    }
}