.site-footer {
    text-align: center;
    border-top: 1px solid #D3D3D3;
}

/* Partie haute du footer */
.footer-top-wrapper {
    background: white;
    padding: 25px 50px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    
}

.site-footer img {
    height: 60px;
    width: auto;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.footer-menu li {
    display: inline-block;
}

.footer-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Séparateur */
.footer-separator {
    margin: 0;
    border: 0;
    border-top: 1px solid #ddd;
    width: 100%;
}

/* Partie basse du footer */
.footer-bottom-wrapper {
    background: #fbd9be; 
    padding: 15px 50px;
    border-top: 1px solid #D3D3D3;
}

.footer-bottom {
    font-size: 14px;
    color:black;
}

.footer-bottom a {
    color: black;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top-wrapper {
        padding: 25px;
    }

    .footer-top {
        flex-direction: column;
        gap: 15px;
    }

    .footer-menu {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom-wrapper {
        padding: 20px;
    }
}
