/* --- Style spécifique pour la page Mentions Légales --- */

/* Conteneur blanc centré */
.legal-content {
    max-width: 800px;
    margin: 60px auto; /* Marge haut/bas auto gauche/droite */
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Légère ombre propre */
    border-radius: 8px;
}

/* Titre principal */
.legal-content h1 {
    text-align: center;
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 50px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

/* Sections */
.legal-section {
    margin-bottom: 40px;
}

/* Sous-titres (H2) */
.legal-section h2 {
    color: #E62020; /* Rouge Factor-I */
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Paragraphes */
.legal-section p {
    color: #444;
    line-height: 1.8; /* Bonne lisibilité */
    margin-bottom: 15px;
}

/* Listes à puces */
.legal-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-section ul li {
    list-style-type: disc;
    color: #444;
    margin-bottom: 8px;
    padding-left: 5px;
}

/* Gras */
.legal-section strong {
    color: #000;
    font-weight: 600;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .legal-content {
        margin: 30px 15px;
        padding: 20px;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
}