.home-process {
    background: #fff;
    position: relative;
}

.home-process .wpo-section-title {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.home-process .wpo-section-title span {
    background: #ff7063;
    color: #fff;
    border-radius: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    display: inline-block;
}

.home-process .wpo-section-title h2 {
    color: #1e3446;
    margin-top: 18px;
}

.home-process .wpo-section-title p {
    color: #5a6b7d;
}

.home-process__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.home-process-step {
    background: #f3f6f6;
    border: 1px solid #e4e8e8;
    border-top: 4px solid #177265;
    padding: 24px 24px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home-process-step__head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e4e8e8;
}

.home-process-step__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e3446;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
}

.home-process-step__title {
    margin: 0;
    padding-top: 10px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    color: #1e3446;
}

.home-process-step__content {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6b7d;
}

.home-process-step__content p {
    margin: 0;
}

.home-process-step__content a {
    color: #177265;
    font-weight: 600;
    text-decoration: none;
}

.home-process-step__content a:hover {
    color: #1e3446;
    text-decoration: underline;
}

.home-process-step:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
    justify-self: center;
}

@media (max-width: 991px) {
    .home-process-step:last-child:nth-child(odd) {
        max-width: 100%;
        grid-column: auto;
        justify-self: stretch;
    }
}

@media (max-width: 767px) {
    .home-process .wpo-section-title {
        margin-bottom: 32px;
    }

    .home-process__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-process-step {
        padding: 20px 18px 18px;
    }

    .home-process-step__number {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .home-process-step__title {
        font-size: 18px;
        padding-top: 8px;
    }

    .home-process-step__content {
        font-size: 14px;
        line-height: 1.65;
    }
}
