/* Styles spécifiques pour les mentions légales */
.mentions-legales {
    padding: 120px 0 100px;
    background-color: #000000;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    color: #F5F5F5;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #1A1A1A;
    border-radius: 10px;
    border-left: 4px solid #FFFFFF;
}

.legal-section h2 {
    color: #FFFFFF;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #F5F5F5;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section strong {
    color: #FFFFFF;
    font-weight: 600;
}

/* Responsive pour les mentions légales */
@media (max-width: 768px) {
    .mentions-legales {
        padding: 100px 0 80px;
    }
    
    .legal-content {
        padding: 0 15px;
    }
    
    .legal-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
}
