.siteWeb {
    display: flex;
    justify-content: space-between;
    background-color: var(--secondary-color);
    padding: 50px 0;
    align-items: center;
    gap: 40px;
}

.siteWeb-text {
    width: 50%;
    text-align: justify;
}

.siteWeb-image {
    width: 50%;
}

.siteWeb-image img {
    width: 100%;
    border-radius: 5px;
}

.prestations p, .prestations li {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin: 1rem 0;
}

.coche, .coche-vide {
    top: 7px;
    position: relative;
    display: inline-block;
    width: 20px;
    height: 24px;
    background: url('/svg/fleche.svg') no-repeat center;
    background-size: contain;
    margin-left: 11px;
}

.coche-vide {
    background: none;
}

.feature-list-label.langues-supp {
    margin-left: 4px;
}

.siteWeb-image-responsive {
    display: none;
}

.siteWeb-image-responsive img {
    width: 100%;
    border-radius: 5px;
}

/* =========== Responsive Section =========== */
/* Desktop Only Styles */
@media (min-width: 1260px) {

}


@media (max-width: 1259px) {

}

/* Tablet and Mobile Shared Styles */
@media (min-width: 768px) and (max-width: 1259px) {

}

/* Mobile Styles */
@media (max-width: 768px) {
    section, .siteWeb {
        padding: 0 1rem;
        width: 100%;
        display: block;
    }

    .siteWeb-text, .siteWeb-image {
        width: 100%;
    }

    .siteWeb-image-responsive {
        display: block;
    }

    .siteWeb-image {
        display: none;
    }
}