.section-steps {
    margin: 100px 0;
}

.steps-header {
    margin-bottom: 110px;
    text-align: center;
}

.steps-header h2 {
    margin-bottom: 22px;
    text-transform: uppercase;
}

.steps-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.steps-list {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.step-item {
    flex: 1 1 calc(25% - 20px);
    padding: 53px 24px 28px;
    background: #fff;
    box-shadow: 0px 10px 30px -12px #00000040;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.step-item:after {
    content: '';
    position: absolute;
    background-image: url("/wp-content/uploads/2025/01/Vector-6.svg");
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 200px;
    width: 100%;
    height: 13px;
    top: -37px;
    left: 67%;
}

.step-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    margin: -130px auto 0;
    background: #15324D1A;
    border: 3px dashed #15324D;
    border-radius: 50%;
    font-size: 38px;
    font-weight: 700;
    color: #15324D;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.step-item:last-child:after {
    display: none;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.step-item h3 {
    color: #15324D;
}

@media (max-width: 768px) {
    .section-steps {
        margin: 52px 0;
    }
    .steps-header > div {
        font-size: 14px;
        line-height: 22px;
    }
    .steps-list {
        flex-direction: column;
    }
    .step-item {
        padding: 22px;
    }
    .step-circle {
        width: 74px;
        height: 74px;
        margin: 0;
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
    }
    .section-steps .step-item {
        margin-left: 70px;
    }
    .section-steps .step-circle {
        width: 74px;
        height: 74px;
        margin: 0;
        top: 47%;
        left: -70px;
        transform: translate(0, -50%);
        font-size: 24px;
    }
    .section-steps .step-item:after {
        display: none;
    }
    .section-steps .step-circle:after {
        content: '';
        position: absolute;
        background-image: url('/wp-content/uploads/2025/04/arrow-steps.svg');
        background-repeat: no-repeat;
        background-size: contain;
        max-width: 10px;
        width: 100%;
        height: 100%;
        top: 114px;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .steps-header {
        margin-bottom: 42px;
        text-align: center;
    }
    #page > main > section.section-steps > div > div.steps-content > div > div:nth-child(4) .step-circle:after {
        display: none;
    }
    .step-item h3 {
        color: #15324D;
        font-size: 14px;
        line-height: 24px;
    }
    .step-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
    }
    .step-content p {
        font-size: 14px;
        line-height: 22px;
    }
}