.footer-section{
    background-color: #f8f9fa;
    padding: 2rem;
}

.end-footer a{
    color: var(--secondary-color);
    text-decoration: none;
}

.end-footer a:hover{
    color: black;
}

.footer-section .container{
    width: 100%; 
    justify-content: space-around;
    align-items: start;
}

.footer-section ul{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    justify-content: center;
    padding: 0;
    text-align: center;
}

.footer-section ul li a{
    color: black;
    text-decoration: none;
}

.footer-section ul li a:hover{
    color: var(--touch-color);

}

.end-footer p, .footer-section p{
    width: 100%;
    margin: 0;
    text-align: center;
}

.end-footer{
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
}

@media screen and (max-width: 768px) {
    .footer-section{
        flex-direction: row-reverse;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 100vw;
        padding: 0;
        gap: 0;
    }
    .footer-section img{
        width: 151px;
        height: auto;
        
    }
    .footer-section hr{
        display: none;
    }
    .footer-section .flex-column{
        justify-self: center;
        align-items: center;
    }
    .footer-section .container{
        width: 100vw;
        padding: 1rem;
    }
    .footer-section ul{
        width: 90vw;
        padding: 1rem;
    }
    .footer-section ul li a, .footer-section ul li p{
        font-size: 20px;
    }

    .map-container {
    width: 80vw; /* Largeur dynamique basée sur la fenêtre */
    height: 50vw; /* Hauteur calculée pour respecter un ratio 16:10 */
    margin: auto; /* Centrage horizontal */
    position: relative;
}

.map-container iframe {
    width: 100%; /* L'iframe occupe toute la largeur du conteneur */
    height: 100%; /* L'iframe s'adapte à la hauteur du conteneur */
    border: none; /* Supprime les bordures */
}

}