/* ✅ Hero-styling */
.privacy-header {
    background: url('/website/assets/images/privacy-banner.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.privacy-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.privacy-header p {
    font-size: 1em;
    font-weight: bold;
}

/* ✅ Inhoud styling */
.privacy-content {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: #fffef9;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(191, 161, 74, 0.2);
    line-height: 1.8;
}

.privacy-content p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

/* ✅ Responsive verbeteringen */
@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 2em;
    }

    .privacy-content {
        padding: 15px;
    }
}
