/* =========================================
   STYLE PAGES LÉGALES (Luxe & Lisible)
   ========================================= */

/* Espacement pour ne pas être caché par le header fixe */
.legal-page {
    padding-top: 140px; 
    padding-bottom: 80px;
    background-color: #fff; /* Fond blanc propre */
    min-height: 80vh;
}

.legal-container {
    max-width: 900px; /* Largeur lecture confortable */
    margin: 0 auto;
    padding: 0 20px;
}

/* TITRE PRINCIPAL */
.legal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
    letter-spacing: 2px;
}

/* SECTIONS */
.legal-section {
    margin-bottom: 40px;
}

/* SOUS-TITRES (H2) */
.legal-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c9a473; /* La touche dorée */
    display: inline-block;
    letter-spacing: 1px;
}

/* PARAGRAPHES */
.legal-section p, .legal-section li {
    font-family: 'Montserrat', sans-serif; /* Ou une police serif si tu préfères pour le texte */
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
    text-align: justify; /* Fait plus "officiel" */
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section a {
    color: #c9a473;
    text-decoration: underline;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
    .legal-page { padding-top: 120px; }
    .legal-title { font-size: 1.8rem; }
}