/* Footer Section */

footer {
    background-color: #ffffff; /* Couleur de fond */
    color: #02579b;
    text-align: center;
    padding: 20px 0;
    margin-top: auto; /* Pousse le footer vers le bas si nécessaire */
}

.footer-content {
    display: flex;
    flex-direction: column; /* Alignement vertical par défaut */
    align-items: center; /* Centre les éléments horizontalement */
    gap: 15px; /* Espacement entre le logo et le texte */
}

.footer-text p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-text a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.footer-text a:hover {
    text-decoration: underline;
}

.sponsor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* espace entre les images */
}

.sponsor-logos img {
    height: 60px;
    padding: 0 10px;
    border-left: 1px solid #ccc;
}

.sponsor-logos img:first-child {
    border-left: none; /* pas de séparation à gauche du premier logo */
}

/* Responsive Design */
@media (max-width: 990px) {/*768px) {*/
    .footer-logo img {
        width: 60px; /* Réduit la taille du logo sur petits écrans */
    }

    .footer-text {
        font-size: 0.8rem; /* Réduit la taille du texte */
    }
}