/* Fix pour les pages légales - Centrage des titres */

.legal-page {
    padding-top: 100px;
    min-height: 100vh;
}

.legal-page .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    text-align: center !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
}

.legal-content .last-updated {
    text-align: center !important;
    color: #6b7280 !important;
    font-size: 0.9rem !important;
    margin-bottom: 2.5rem !important;
}

.legal-content h2 {
    color: #2563eb !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin: 2rem 0 1rem 0 !important;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #374151 !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    margin: 1.5rem 0 0.5rem 0 !important;
}

.legal-content p {
    color: #4b5563 !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
}

.info-block {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.info-block p {
    margin-bottom: 0.5rem !important;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem;
    }
    
    .legal-content h1 {
        font-size: 2rem !important;
    }
}