/* Style pour le menu noir sur la page mentions légales */
.header {
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

/* Styles pour le contenu des mentions légales */
.legal-notice-section {
    background-color: #f8f9fa;
    min-height: 80vh;
}

.legal-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 3rem 2rem;
    margin-bottom: 2rem;
}

.legal-block {
    border-left: 4px solid #d4a574;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.legal-subtitle {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.legal-subtitle i {
    color: #d4a574;
    font-size: 1.1rem;
}

.legal-info {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.legal-info a {
    color: #d4a574;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-info a:hover {
    color: #b8956a;
    text-decoration: underline;
}

.legal-info strong {
    color: #2c3e50;
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1rem;
    }
    
    .legal-block {
        padding-left: 1rem;
    }
    
    .legal-subtitle {
        font-size: 1.1rem;
    }
}