body {
    padding: 0;
    margin: 0;
}

footer {
    background-image: url('../img/bg_bois.avif');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 50px 20px 30px;
    font-family: Arial, sans-serif;
}


.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 40px;
    gap: 20px;
    text-align: center;
}


.footer-top div {
    flex: 1;
}


.footer-top .separator {
    max-width: 1px;
    background: rgba(255, 255, 255, 0.6);
    height: 30px;
    margin: auto;
}


.footer-title {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 5px;
}


.footer-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
}


.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.9;
}


@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }


    .footer-top .separator {
        display: none;
    }
}