.pied-de-page {
    background-color: var(--beige);
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.conteneur-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-pied-page {
    width: 200px;
    height: auto;
    display: block;
}

.bloc-infos-footer {
    margin-left: auto; 
    display: flex;
    gap: 80px;
}

.colonne-info-pied-page h1 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--vertf);
    margin-bottom: 20px;
}

.liste-footer {
    list-style: none;
    padding: 0;
    margin: 0;
}

.liste-footer li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--noir);
    line-height: 1.4;
}

.element-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.element-info img {
    width: auto;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.element-info a {
    color: var(--noir);
    text-decoration: none;
    transition: color 0.3s ease;
}

.element-info a:hover {
    color: var(--vertf);
    text-decoration: underline;
}

.reseaux-sociaux-footer {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.reseaux-sociaux-footer a {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 1;
}

.reseaux-sociaux-footer img {
    width: auto;
    height: 35px;
    display: block;
}

.reseaux-sociaux-footer a:hover {
    transform: translateY(-2px) scale(1.1);
    opacity: 0.85;
}

#link-privacy-policy{
    display: block;
    text-align: center;
    margin-top: 60px;
    font-size: 0.9rem;
    color: var(--noir);
    text-decoration: none;
    transition: color 0.3s ease;
}

#link-privacy-policy:hover {
    text-decoration: underline;
}


@media (max-width: 900px) {
    .conteneur-footer {
        flex-direction: column;
        align-items: center; 
        text-align: center;
        gap: 40px;
    }

    .bloc-infos-footer {
        margin-left: 0;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 100%;
    }

    .liste-footer {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .element-info {
        justify-content: start; 
        text-align: left;
    }

    .element-info img {
        width: auto;
        height: 25px;        
        margin-top: -2px;
    }

    .reseaux-sociaux-footer {justify-content: center;}

    .reseaux-sociaux-footer img {
        width: auto;
        height: 40px;
        display: block;
    }
}