.why-choose-section {
    padding: 40px 20px;
}

.why-choose-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.titres_section {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--orange-main);
}

/* Zone texte + image en flex */
.why-choose-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
}

/* Texte à gauche */
.why-choose-text {
    flex: 1 1 50%;
}

/* Liste personnalisée */
.why-choose-list {
    list-style: none;
    padding: 0;
}

.why-choose-list li {
    margin-bottom: 15px;
    padding-left: 24px;
    position: relative;
}

.why-choose-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--orange-main);
}

/* Conclusion centrée dans la colonne texte */
.why-choose-conclusion {
    margin-top: 30px;
    font-weight: bold;
    font-size: 1.1em;
}

/* Image à droite */
.why-choose-image {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-content {
        flex-direction: column;
    }

    .why-choose-image,
    .why-choose-text {
        flex: 1 1 100%;
    }

    .why-choose-image img {
        max-width: 100%;
    }
}