/* ============================================
   PAGE POLITIQUE DE CONFIDENTIALITÉ
   ============================================ */

/* Affichage et styles des titres page politique */
body.page-politique-de-confidentialite h1,
body.page-template-politique-de-confidentialite h1,
body.politique-page h1,
body.page-template-politique h1 {
    display: block !important;
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    color: #3E3B90 !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: clamp(2rem, 4vw, 3rem) !important;
    line-height: 1.2 !important;
    font-family: var(--font-heading) !important;
}

/* Layout général */
.politique-page {
    background: var(--color-white);
}

.content-section {
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left !important;
}

/* Blocs de contenu légal */
.legal-block {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

.legal-block:last-of-type {
    border-bottom: none;
}

.legal-block h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #3E3B90;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
}

.legal-block h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #524FA6;
    margin-top: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    font-weight: 600;
}

.legal-block p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: var(--color-text-medium);
    margin-bottom: 1rem;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block a {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-block a:hover {
    color: var(--color-gold-dark);
    text-decoration: underline;
}

.legal-block strong {
    color: var(--color-text-dark);
    font-weight: 600;
}


/* Responsive */
@media (max-width: 768px) {
    .legal-block {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
}