/* SECTION GLOBALE */
.solution-section {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 80px 0;
    font-family: Inter, sans-serif;
    background: #fff;
}

/* CONTENEUR PRINCIPAL */
.solution-container {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    width: 85%;
    max-width: 1200px;
}

/* ----------- TEXTE À GAUCHE ----------- */
.solution-left {
    flex: 1;
}

.solution-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 14px;
    color: #134F50;
    border: 1px solid #134F50;
    border-radius: 20px;
    /* Police */
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.solution-title {
    margin-top: 20px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #1B1F1F;
    /* Police */
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 40px;
    font-weight: 700;
}

.solution-description {
    max-width: 470px;
    margin-top: 20px;
    line-height: 1.6;
    color: #1B1F1F;
    /* Police */
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.solution-button {
    display: inline-block;
    padding: 12px 22px;
    margin-top: 25px;
    color: white;
    text-decoration: none;
    background: #134F50;
    border-radius: 30px;
    transition: 0.25s ease;
    /* Police */
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.solution-button:hover {
    background: #267871;
}

/* ----------- IMAGE À DROITE ----------- */

.solution-right {
    display: flex;
    flex: 1;
    justify-content: center;
}

.solution-image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    overflow: hidden;
    border-radius: 20px;
}

.solution-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

@media (max-width: 1050px) {
    .solution-container {
        flex-direction: column;     /* Passe le layout en vertical */
        gap: 40px;
        text-align: center;         /* Centrer le texte */
    }

    .solution-left {
        order: 2;                   /* Le texte passe sous l'image */
    }

    .solution-right {
        order: 1;                   /* L'image passe au-dessus */
    }

    .solution-description {
        max-width: 100%;            /* Pas de restriction */
        margin-left: auto;
        margin-right: auto;
    }

    .solution-title {
        font-size: 28px;
    }

    .solution-image-container {
        max-width: 380px;
        max-height: 150px;
    }
}

@media (max-width: 480px) {

    .solution-section {
        padding: 40px 0;
    }

    .solution-container {
        width: 90%;
        gap: 30px;
    }

    .solution-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .solution-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .solution-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .solution-button {
        padding: 10px 18px;
        font-size: 14px;
    }

    .solution-image-container {
        max-width: 300px;           /* Plus petit pour mobile */
    }
}
