/* ==========================================================
STYLES POUR LES PAGES LÉGALES
========================================================== */
:root {
    --be-blue-dark: #0D1B2A;
    --be-blue-accent: #177CBF;
    --be-bg-light: #f8f9fa;
    --be-border: #e2e8f0;
}

.legal-page {
    background-color: #ffffff;
    padding: 80px 20px 100px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--be-border);
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--be-blue-dark);
    margin-bottom: 10px;
}

.legal-header p {
    color: #4a5568;
    font-size: 0.95rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--be-blue-dark);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--be-blue-dark);
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-content ul li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content strong {
    color: var(--be-blue-dark);
}

.legal-content a {
    color: var(--be-blue-accent);
    text-decoration: underline;
}

.legal-retour {
    display: inline-block;
    margin-top: 50px;
    color: var(--be-blue-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.legal-retour:hover {
    transform: translateX(-5px);
    color: #0e5b8e;
}

@media (max-width: 768px) {
    .legal-page { padding: 50px 15px; }
    .legal-header h1 { font-size: 2rem; }
}