/* Styles pour la Politique de Confidentialité */
body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    margin: 0;
    padding: var(--header-h) 0 0 0;
}

.pdc-container {
    max-width: var(--container-max);
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.pdc-section h1 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 1rem;
    font-family: var(--font-serif);
}

.pdc-section article {
    background-color: var(--bg-surface);
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.pdc-section article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.pdc-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: var(--font-serif);
}

.pdc-section p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    body {
        padding-top: 65px;
        /* Header légèrement plus petit sur tablette */
    }

    .pdc-container {
        margin: 1.5rem auto;
    }
}

@media (max-width: 600px) {
    body {
        padding-top: 60px;
        /* Header plus petit sur mobile */
    }

    .pdc-container {
        padding: 0 10px;
        margin: 1rem auto;
    }

    .pdc-section article {
        padding: 1rem;
    }
}

/* Les styles globaux (header, footer, skip-link) sont gérés par global.css */

/* Respect du système: animations réduites */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

:root {
    color-scheme: light dark;
}