.step-process-wrapper {
    position: relative;
    padding: 40px 0;
}
.step-process-wrapper::before {
    content: '';
    position: absolute;
    top: 115px;
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: #eeeeee;
    z-index: 0;
}
@media (max-width: 767px) {
    .step-process-wrapper::before {
        display: none;
    }
}
.step-process-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}
@media (max-width: 767px) {
    .step-process-inner {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}
.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-image-wrap {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.step-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 15px;
    background-color: #333;
}
.step-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1a4f8f;
}
.step-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}