.presenation {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 500px;
    padding: 5%;
}
.presenation .zone-l {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 60%;
}
.presenation .zone-r {
    width: 30%;
}
.presenation .zone-r img {
    width: 400px;
}
bold {
    font-family: Roboto-Bold;
}
.mia {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background-color: var(--color-main);
    width: 100%;
    height: 300px;
}
.mia h2 {
    color: white;
    align-self: center;
    font-family: Roboto;
    font-size: 40px;
}
.mia .cars {
    display: flex;
    justify-content: space-evenly;
}
.mia .car {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    cursor: pointer;
}
.mia .car img {
    width: 191px;
    height: 131px;
    object-fit: contain;
}
.mia .car span {
    text-decoration: none;
    text-align: center;
    font-family: "Roboto";
    color: white;
}
.contact-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5%;
    gap: 40px;
}
.contact-area h1 {
    font-family: Roboto-Medium;
    font-size: 38px;
    text-align: center;
}
.contact-area .set {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
}
.contact-area .set img {
    width: 50px;
    height: 50px;
}
.contact-area .set span {
    font-size: 18px;
}
@media (max-width: 767px) {
    /* Styles spécifiques aux téléphones */
    .presenation {
        flex-direction: column;
        gap: 30px;
    }
    .presenation .zone-r {
        display: flex;
        justify-content: center !important;
        align-items: center !important;
    }
    .presenation .zone-r img {
        width: 80% !important;
    }
    .presenation > * {
        width: 100% !important;
    }
    .mia {
        height: 260px !important;
    }
    .mia .car img {
        width: 101px !important;
        height: 71px !important;
    }
}
