.privacy-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background-image: url('../content/img/header_privacy.jpg');
    background-size: cover;
    background-position: center 0%;
    will-change: background-position;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1000;
    border-bottom: 2px solid var(--violet);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.8);
}

.privacy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

.privacy-title {
    font-family: 'Lemon Milk', sans-serif;
    font-size: 45px;
    color: var(--blanc);
    margin: 0;
    letter-spacing: 5px;
}

.privacy-date {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--violet);
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

main.content-section {
    margin-top: 250px !important;
}

.document-box {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.document-section {
    margin-bottom: 40px;
}

.document-section:last-child {
    margin-bottom: 0;
}

li a {
    color: var(--violet);
    text-decoration: none;
    transition: all 0.3s ease;
}

li a:hover {
    color: var(--blanc);
}