/* SECTION COMMENT ÇA MARCHE — VERSION SAAS PRO */
.how-it-works-container {
    text-align: center;
    padding: 80px 0;
}

.how-steps {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    background: #ffffff;
    padding: 25px;
    width: 30%;
    border-radius: 14px;
    box-shadow: 0px 6px 18px rgba(0,0,0,0.05);
    transition: all .3s ease-in-out;
}

.step-item:hover {
    transform: translateY(-6px);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.08);
}

.step-item img {
    width: 65px;
    margin-bottom: 20px;
}

.step-arrow {
    font-size: 35px;
    color: #3A7EFE;
    align-self: center;
}

/* RESPONSIVE */
@media(max-width: 991px) {
    .how-steps {
        flex-wrap: wrap;
    }
    .step-item {
        width: 100%;
    }
}
