.process-section {
    position: relative;
}

.process-section__head {
    max-width: 920px;
    margin: 0 auto 34px;
}

.process-steps {
    display: grid;
    gap: 18px;
}

.process-step {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding: 28px 30px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 3px 10px #2e2e2e10;
    border: 1px solid #2e2e2e10;
}

.process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(17, 24, 39, 0.06);
    color: #111827;
    font-size: 18px;
    font-weight: 700;
}

.process-step__title {
    margin: 0;
    color: #5577d1;
    font-size: 24px;
    line-height: 1.28;
    font-weight: 700;
}

.process-step__text {
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 1.4;
    color: #2e2e2e;
}

@media only screen and (max-width: 991px) {
    .process-step {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .process-step__text {
        font-size: 15px;
        line-height: 1.4;
    }
}
