/* --- BASIS VARIABELEN --- */
:root {
    --primary-color: #0056b3; 
    --secondary-color: #00a8cc;
    --text-dark: #333;
    --text-light: #555;
    --bg-light: #f9f9f9;
}

/* --- PAGE HEADER (Gelijk aan de rest) --- */
.page-header {
    background: url('../img/background.png') no-repeat center center/cover; /* Zorg dat dit pad klopt, of gebruik background.png */
    height: 35vh; /* Iets kleiner dan home */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.header-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Iets donkerder voor leesbaarheid */
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-size: 2.8rem; margin-bottom: 10px; }

/* --- TERMS SECTION --- */
.terms-section {
    background: #fff;
}

/* Knoppenbalk bovenin */
.terms-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.terms-controls .date { font-style: italic; color: #999; }

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-dark:hover {
    background: var(--text-dark);
    color: #fff;
}

/* De Content Kolom - Max breedte voor leesbaarheid */
.terms-content {
    max-width: 800px; /* Belangrijk: tekst niet te breed maken */
    margin: 0 auto;   /* Centreren */
}

article {
    margin-bottom: 30px;
}

article h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

article p, article li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

article ol {
    padding-left: 20px;
    margin-top: 5px;
}

article ol li {
    margin-bottom: 5px;
}

/* Footer onderaan de tekst */
.terms-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    color: var(--text-light);
}
.terms-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

/* --- PRINT STYLES --- */
/* Dit zorgt dat header/footer/plaatjes wegvallen als je print */
@media print {
    .main-header, .main-footer, .page-header, .header-cta, .btn {
        display: none !important;
    }
    .terms-section { padding: 0; }
    .terms-content { max-width: 100%; }
    body { font-size: 12pt; color: #000; background: #fff; }
    a { text-decoration: none; color: #000; }
}