/* ============================================================
   css/legal.css - PAGES JURIDIQUES
   ============================================================ */

.legal-section {
    max-width: 900px;
    margin: 120px auto 80px auto; /* Marge haute pour ne pas être caché par le header fixe */
    padding: 0 20px;
}

.legal-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 40px;
    text-transform: uppercase;
    border-bottom: 4px solid var(--primary-blue);
    padding-bottom: 10px;
    display: inline-block;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    font-size: 1rem;
    text-align: justify;
}

.legal-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
    list-style: disc;
}

.legal-content li {
    margin-bottom: 5px;
    color: #4a4a4a;
}

.legal-content a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1a1a1a;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .legal-section { margin-top: 100px; }
    .legal-section h1 { font-size: 1.8rem; }
    .legal-content h2 { font-size: 1.3rem; }
    .legal-content p { text-align: left; }
}