/* Fix d'alignement pour le footer - Force l'alignement de la section légale */

/* Forcer l'alignement du container principal footer */
.footer {
    background: #1e293b !important;
    color: white !important;
    padding: 3rem 0 0 !important;
}

.footer-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
}

/* Forcer l'alignement de la section footer-bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 2rem 0 !important;
}

.footer-bottom-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

/* Section légale */
.footer-legal {
    flex: 1 !important;
}

.footer-legal p {
    margin: 0 0 0.5rem 0 !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.legal-links {
    display: flex !important;
    gap: 1.5rem !important;
    flex-wrap: wrap !important;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.9rem !important;
    transition: color 0.3s ease !important;
    text-decoration: none !important;
}

.legal-links a:hover {
    color: white !important;
}

/* Certifications */
.footer-certifications {
    display: flex !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
}

.certification {
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    white-space: nowrap !important;
}

/* Debug - bordure temporaire pour voir l'alignement */
.footer-bottom-content {
    /* border: 2px solid red !important; */ /* Décommentez pour voir l'alignement */
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }

    .legal-links {
        justify-content: center !important;
    }

    .footer-certifications {
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .legal-links {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .certification {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.8rem !important;
    }
}