footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: white;
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-left img {
    height: 100px;
    margin-bottom: 10px;
}

.footer-left p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.footer-center p {
    margin: 0;
    font-size: 14px;
    text-align: center;
}

.footer-right ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.footer-right ul li {
    margin-bottom: 10px;
    line-height: 0.6;
    font-weight: 100;
}

.footer-right ul li a {
    color: #444;
    text-decoration: none;
    font-size: 14px;
    position: relative;
}

.footer-right ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1px;
    background-color: #444;
    transition: width 0.6s ease-in-out;
}

.footer-right ul li a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left, .footer-center, .footer-right {
        flex: none;
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-left {
        display: flex;
        justify-content: center; /* Centrer l'image horizontalement */
    }

    .footer-left img {
        height: 80px;
    }

    .footer-right ul {
        text-align: center;
    }

    .footer-right ul li {
        margin-bottom: 5px;
    }
}