

/* Styles généraux */
.guidances-tph {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    vertical-align: middle;
    border: black 1px solid;
    border-radius: 50px;
    background-color:  #E0CDA9;
    height: auto;
    padding: 30px;
    width: 80%;
    margin: 0 auto;
  
}

.guidances-mail {
    display: flex;
    align-items: center;
    border-radius: 50px;
    background-color:  #E0CDA9;
    height: auto;
    width: 55%;
    justify-content: space-around;
    padding: 30px;
    border: black 1px solid;
    margin: 0 auto;
     
}


.guidance-compatibilité {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    border: black 1px solid;
    border-radius: 50px;
    background-color:  #E0CDA9;
    height: auto;
    padding: 30px;
    width: 30%;
    margin: 20px auto;
}



.img-consultation img{
    border-radius: 50px;
    width: 25%;
   
}
.img-consultation {
    align-items: center;
    margin: 20px 0 20px 0;
    width: 100%;
}
/* Media Query pour les écrans de 450 pixels ou moins */
@media screen and (max-width: 932px) {
    .guidances-tph {
        flex-direction: column; 
        width: 80%;
        justify-content: center;
        gap: 20px;
        transform: translate(0%, 0%);
       }
     .guidances-mail {
        flex-direction: column;
        width: 80%;
        gap: 20px;
        transform: translate(0%, 0%);
     }
 
     .guidance-compatibilité {
        flex-direction: column;
        width: 80%;
        transform: translate(0%, 0%);
    }
     .img-consultation img{
        border-radius: 50px;
        width: 60%;
    }
    
}
/* Styles pour les écrans supérieurs à 451px et inférieur à 932px */
@media only screen and (min-width: 451px) and (max-width : 932px) {

    
}