.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    bottom: 0;
}

@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }

    .footer-links, .footer-contact-info {
        justify-content: center;
        align-items: center;
    }
}

/* Styles spécifiques pour les écrans de très petite taille */
@media screen and (max-width: 480px) {
    .footer-content {
        grid-template-columns: repeat(1,1fr);
        text-align: center;
    }

    .footer-links, .footer-contact-info {
        justify-content: center;
        align-items: center;
    }
}

.footer-contact-info,
.footer-links {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-links .a {
    color: black;
    text-decoration: none;
}

.footer-links .a:hover {
    color: white;
}

.footer-contact-info p {
    margin: 0;
}

.footer-bottom {
    background-color: #ddd;

}
footer .a:hover {
    color: white;
    background-color: #E0C62B;
}

footer {
    background-color: #E0C62B;
    display: block;
    margin-top: 50px;
}
.f .a {
    color: black;
    text-decoration: none;
    font-size: 14px;
}

.droit {
    margin-bottom: 0;
}

a {
    color: black;
    text-decoration: none;
}