/* =========================================
   STYLE "OFFICIEL" (CGV, Mentions, Confidentialité)
   ========================================= */

/* On utilise une police Serif pour faire "Papier/Légal" */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Roboto:wght@400;500;700&display=swap');

/* Conteneur principal (La page grise) */
.legal-container, 
.privacy-container {
    max-width: 900px;
    margin: 40px auto 80px auto;
    padding: 0;
    color: #1a1a1a;
    font-family: 'Merriweather', serif; /* Police type livre/journal */
}

/* La "Feuille de Papier" A4 */
.legal-page-wrapper {
    background: #ffffff;
    padding: 60px 80px; /* Marges type impression */
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

/* Titre du document (H1 simulé) */
.legal-doc-title {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: #000;
}

.legal-doc-subtitle {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid #000;
}

/* Les Articles (H2) */
.legal-section h2, 
.privacy-section h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-left: 4px solid var(--copper-main); /* Seule touche de couleur marque */
    padding-left: 15px;
}

/* Le texte juridique (Le pavé) */
.legal-section p, 
.legal-section li, 
.privacy-section p, 
.privacy-section li {
    font-size: 0.95rem;
    line-height: 1.8; /* Aéré pour la lecture */
    color: #333;
    margin-bottom: 15px;
    text-align: justify; /* Justifié comme un livre */
}

.legal-section strong, 
.privacy-section strong {
    font-weight: 700;
    color: #000;
}

/* Listes */
.legal-section ul, 
.privacy-section ul {
    list-style: none; /* On retire les puces par défaut */
    padding-left: 0;
}
.legal-section ul li, 
.privacy-section ul li {
    padding-left: 20px;
    position: relative;
}
.legal-section ul li::before, 
.privacy-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Mise en avant discrète (Encadré gris) */
.highlight-box {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    font-size: 0.9rem;
    font-style: italic;
    margin: 20px 0;
}

/* Responsive Mobile (On retire l'effet feuille A4) */
@media (max-width: 768px) {
    .legal-page-wrapper {
        padding: 30px 20px;
        box-shadow: none;
        border: none;
        background: transparent;
    }
    .legal-doc-title { font-size: 1.5rem; }
}