footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    flex-wrap: wrap;  /* Pour le responsive design */
}

.footer-section {
    flex: 1;
    margin: 0 20px;
    min-width: 200px;  /* Pour le responsive design */
}

.footer-logo {
    width: 100px;
    margin-bottom: 10px;
}

.socials a {
    margin: 0 10px;
    font-size: 24px; /* Ajustez selon la taille souhaitée */
    color: white;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    color: #aaa;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

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

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

.contact-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.contact-link p:hover {
    text-decoration: underline;
}


.contact-link i {
    font-size: 1.5rem;
}

.login {
    text-decoration: none;
    color: white;
}

.login:hover {
    text-decoration: underline;
}