/* ==========================================================================
   STYLES SPÉCIFIQUES - POLITIQUE DE CONFIDENTIALITÉ
   ========================================================================== */

/* Structure principale */
.wrc-hero-legal {
    background-color: var(--wrc-bg-warm);
    padding: 6rem 1.5rem 8rem 1.5rem;
    text-align: center;
}

.wrc-legal-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--wrc-shadow-plum-large);
    padding: 4rem 5rem;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
}

/* Typographie du contenu */
.wrc-legal-content h2 {
    color: var(--wrc-dark-plum);
    border-bottom: 1px solid var(--wrc-border-gold-light);
    padding-bottom: 0.5rem;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    font-size: 1.75rem;
}

.wrc-legal-content h3 {
    color: var(--wrc-gold-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.wrc-legal-content p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: var(--wrc-text-muted);
}

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

/* Listes */
.wrc-legal-content ul.wrc-list-ticks {
    margin-bottom: 1.5rem;
}

.wrc-legal-content ul.wrc-list-ticks li {
    color: var(--wrc-text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Blocs d'adresse et de mise en évidence */
.wrc-legal-address {
    background-color: var(--wrc-bg-cream);
    border-left: 4px solid var(--wrc-gold);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
    line-height: 1.8;
    color: var(--wrc-text-muted);
}

.wrc-legal-address strong {
    color: var(--wrc-dark-plum);
    font-size: 1.1rem;
}

.wrc-legal-address a {
    color: var(--wrc-orange);
    text-decoration: none;
}

.wrc-legal-address a:hover {
    color: var(--wrc-dark-plum);
    text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .wrc-hero-legal {
        padding: 4rem 1rem 5rem 1rem;
    }
    
    .wrc-legal-container {
        padding: 2rem 1.5rem;
        margin-top: -2rem;
        border-radius: 8px;
    }

    .wrc-legal-content h2 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }
}