.final-steps-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.steps-content {
    flex: 1;
    padding-right: 20px;
}

.steps-image-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
}

.steps-image-wrapper.mobile-view {
    display: none !important;
}

.steps-image-wrapper:not(.mobile-view) {
    display: block !important;
}

.steps-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-circle {
    width: 96px;
    height: 96px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #53a6f8;
    flex-shrink: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.step-text h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #000;
}

.step-text p {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
}

@media (max-width: 900px) {
    .final-steps-block {
        display: flex !important;
        flex-direction: column-reverse !important;
        padding: 0 !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .steps-image-wrapper:not(.mobile-view) {
        display: none !important;
    }

    .steps-image-wrapper.mobile-view {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .feature-image.steps-image-wrapper.mobile-view img,
    .steps-image-wrapper.mobile-view img {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: cover !important;
        padding: 0 20px !important;
    }

    .steps-content {
        width: 100% !important;
        padding: 0 20px !important;
    }

    .step-circle {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .step-text p{
        font-size: 14px;
    }

    .step-text h4{
        font-size: 16px;
    }
}