footer .footerContainer {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid black;
}
  
footer .footerRow {
    display: flex;
    justify-content: space-between;
    flex-direction: row; 
}
  
footer .footerCol {
    flex-basis: calc(33.33% - 20px);
    margin-right: 20px;
    flex-direction: row;
}
  
footer .footerCol:last-child {
    margin-right: 0;
}
  
footer h3 {
    margin: 0;
    color: black;
}

footer p {
    margin: 10px 0;
    color:black;
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer li {
    margin-bottom: 5px;
}

footer a {
    color: black;
    text-decoration: none;
}

footer hr {
    border-color: black;
}

footer .copyright {
    text-align: center;
    color: black;
}

footer {
    background-color: #F8F3EC;
    padding: 20px;
}

@media screen and (max-width: 767px) {
    footer .footerRow {
        justify-content: space-between;
        flex-direction: column;
    }
    
    footer .footerCol {
        flex-basis: calc(33.33% - 20px);
        margin-right: 20px;
        flex-direction: row; /* Ajout de cette ligne */
    }

    h3 {
        text-align: center;
        padding-top: 2vh;
        padding-bottom: 2vh;
    }

    footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: space-evenly;
    }
    

}