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

/* --- PAGE HEADER --- */
.page-header {
    background: url('../img/background.png') no-repeat center center/cover;
    height: 35vh;
    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);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-size: 2.8rem; margin-bottom: 10px; }

/* --- PRIVACY SECTION --- */
.privacy-section { background: #fff; }

/* Knoppenbalk */
.privacy-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.privacy-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; }

/* Content Layout */
.privacy-content {
    max-width: 800px; /* Smalle kolom leest prettiger */
    margin: 0 auto;
}

article { margin-bottom: 35px; }

article h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
}

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

article ul {
    padding-left: 20px;
    margin-top: 10px;
    list-style-type: disc;
}

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

/* Bedrijfsgegevens lijstje */
.company-details {
    list-style: none !important;
    padding-left: 0 !important;
    background: var(--bg-light);
    padding: 20px !important;
    border-radius: 8px;
}
.company-details li { margin-bottom: 8px; display: flex; gap: 10px; }
.company-details strong { min-width: 120px; color: var(--text-dark); }
.company-details a { color: var(--primary-color); font-weight: 600; }

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