.section-whom-suits {
    width: 100% !important;
    background: #111B31;
    margin-bottom: 60px;
    padding: 60px 0;
}

.section-whom-suits-title {
    padding: 0 100px;
    font-weight: 700;
    font-size: 50px;
    line-height: 102%;
    color: #FFFFFF;
    margin-bottom: 55px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 13.75px;
    height: 137px;
    background: #3530FA;
    border-radius: 16px;
}

.card-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 41px;
    height: 41px;
    background: #534FFB;
    border-radius: 9.6px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: #FEFEFE;
}

.card-label {
    font-weight: 700;
    font-size: 35px;
    line-height: 28px;
    color: #FEFEFE;
}

@media (max-width: 768px) {
    .section-whom-suits-title {
        font-size: 28px;
        padding: 0 20px;
    }

    .cards-container {
        gap: 15px;
        width: 100%;
        white-space: normal;
        word-wrap: break-word;
    }

    .card {
        height: auto;
    }

    .card-label {
        max-width: 200px;
        font-size: 16px;
        line-height: 26px;
        text-wrap: auto;
    }

    .card-number {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}
