html, body {
    width: 100%;
}
.info {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 20px;
    justify-content: space-evenly;
    align-items: center;
    padding: 5%;
}
.info bold {
    font-family: "Roboto-Bold";
}
.info h1 {
    font-family: Roboto-Medium;
    font-size: 38px;
}
.info .separator {
    width: 1px;
    height: 400px;
    background: lightgray;
    margin-block: 50px;
}
.info .detail {
    width: 50%;
}
.info .detail img {
    width: 350px;
    height: 250px;
    object-fit: contain;
}
.info .detail .justify {
    text-align: justify;
}
.info .contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 100px;
    width: 30%;
    height: 100%;
}
.info .contact .set {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.info .contact .set img {
    width: 30px;
    height: 30px;
}
@media (max-width: 767px) {
    /* Styles spécifiques aux téléphones */
    .info {
        padding: 100px 10% 100px 10%;
        flex-direction: column;
    }
    .info h1 {
        text-align: center;
    }
    .info .separator {
        width: 200px !important;
        height: 1px !important;
        background: lightgray !important;
        margin-block: 50px !important;
    }
    .info .contact, .info .detail {
        width: 100% !important;
    }
    .info .detail img {
        width: 100% !important;
    }
    .info .set {
        margin-inline: 60px;
    }
}
