#avantages-section {
    padding-top: 250px;
    padding-bottom: 250px;
}
.avantages-section-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.avantages-section-container-left {
    width: 40%;
}

.avantages-section-container-right {
    width: 55%;
    display: flex;
    justify-content: space-evenly;
    gap: 25px;
}

.avantages-section-container h3 {
    background: linear-gradient(90deg, #80ffcc 0%, #2D6ADE 97.15%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 2rem;
    margin-bottom: 1rem;
}

.avantages-card {
    width: 30%;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
}

.avantages-card-image {
    background: linear-gradient(90deg, #80ffcc 0%, #2D6ADE 97.15%);
    border-radius: 9999px;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    display: flex;
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 736px) {
    .avantages-section-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .avantages-section-container-left,
    .avantages-section-container-right {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .avantages-card {
        width: 300px;
    }
}