/* ============================= */
/* PAGE LÉGALE / POLITIQUE DE CONFIDENTIALITÉ */
/* ============================= */

.legal-section {
    padding: 120px 10%;
    background: #f8f9fb;
    min-height: 80vh;
}

.legal-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    font-weight: bold;
    color: #111;
}

.legal-container {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    text-align: left;
}

.legal-container h2 {
    margin-top: 35px;
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.legal-container p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

.legal-container strong {
    color: #111;
}

.legal-container li {
    font-size: 0.95rem; /* Même taille que le texte général */
    color: #555; /* Même couleur que le texte général */
    line-height: 1.7; /* Même hauteur de ligne pour l'espacement */
}

/* Responsive */

@media (max-width: 960px) {

    .legal-section {
        padding: 60px 20px;
    }

    .legal-container {
        padding: 30px;
    }

    .legal-container h2 {
        font-size: 1rem;
    }

    .legal-container p {
        font-size: 0.9rem;
    }
}