.service-packages {
    padding: 56px 0;
}

.side-wrapper {
    display: flex;
}

.left-side {
    max-width: 59%;
    width: 100%;
}

.right-side {
    border-left: 3px solid #F1F1F1;
    padding-left: 3%;
    max-width: 37%;
    width: 100%;
}

.service-packages h2 {
    padding-left: 17%;
    max-width: 79%;
}

.service-packages h2.ru {
    padding-left: 11%;
    max-width: 81%;
}

.step {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: center;
}

.step:first-child {
    margin-top: 24px;
}

.step p {
    font-size: 0.75rem;
}

.step .count {
    max-width: 40px;
    width: 100%;
    background: #FFE77B;
    color: #000000;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1320px) {
    .service-packages h2, .service-packages h2.ru {
        padding-left: 0;
        max-width: 100%;
        padding-right: 10px;
    }

    .side-wrapper {
        justify-content: center;
    }

    .left-side, .right-side {
        width: 48%;
    }
}

@media (max-width: 767px) {
    .service-packages {
        padding-bottom: 15px;
    }

    .side-wrapper {
        flex-direction: column;
    }

    .left-side, .right-side {
        width: 100%;
        max-width: 100%;
    }

    .right-side {
        border-left: none;
        padding-left: 0;
    }

    .step p {
        font-size: 18px;
    }
}