/* Footer général */
.footer {
    background: linear-gradient(to right, #0044cc, #002f80);
    color: white;
    padding: 20px 0;
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections du footer */
.footer-nav,
.footer-contact,
.footer-social {
    flex: 1 1 150px; /* Ajustement flexible pour la responsivité */
    margin: 10px 20px;
}

/* Titres des sections */
.footer h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
}

/* Liens de navigation */
.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    color: white;
    text-decoration: none;
}

.footer-nav ul li a:hover {
    text-decoration: underline;
}

/* Informations de contact */
.footer-contact p {
    margin: 5px 0;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Icônes des réseaux sociaux */
.footer-social a {
    margin-right: 15px;
    color: white;
    font-size: 18px;
    text-decoration: none;
}

.footer-social a:hover {
    color: #1a3971; /* Bleu clair */
}

/* Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #ffffff33;
    padding-top: 10px;
    font-size: 12px;
    color: #cccccc;
}

/* Responsivité */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: baseline;
    }

    .footer-nav,
    .footer-contact,
    .footer-social {
        margin: 10px 0;
        text-align: left;
    }

    .footer-social a {
        margin-right: 10px;
    }
}
