:root{
    --grey-: #a89aa2;
    --font-: #fff
}

main{
    width: 100%;
    background-color: var(--grey-);
    position: relative;
    padding: 90px 10px 50px 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

main div h4{
    font-weight: 800;
}

main div span{
    font-weight: 800;
}

main a{
    margin-top: 50px;
    padding: 10px 30px;
    color: #000;
    text-decoration: none;
    background-color: #fff;
    border-radius: 5px;
}

/* ----------------------------- */

footer{
    width: 100%;
    background-color: var(--grey-) ;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 70px;
}

footer > div:first-child{
    height: 400px;
    width: 100%;
    background: url(img/178_723_Prise-de-rendez-vous.jpg) center/cover no-repeat;

}

footer > div:nth-child(2){
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}


/* Responsive pour les tailles d'écran supérieures à 768px (tablettes et PC) */
@media screen and (min-width: 768px) {
    main {
        padding: 90px 20px 50px 20px;
    }
}

/* Responsive pour les tailles d'écran supérieures à 1024px (PC) */
@media screen and (min-width: 1024px) {
    main {
        padding: 90px 100px 50px 100px;
    }
    footer {
        gap: 70px;
        min-height: auto; /* Ajustement de la hauteur */
    }
    footer > div:first-child {
        height: 300px; /* Ajustement de la hauteur */
    }
}