.ks-process-wrapper {
    max-width: 1200px;
    margin: 80px auto;
    text-align: center;
    font-family: Inter, Arial, sans-serif;
}

.ks-process-label {
    font-size: 12px;
    letter-spacing: 1px;
    color: #8faadc;
}

.ks-process-title {
    font-size: 36px;
    margin: 10px 0 60px;
}

.ks-process-flow {
    position: relative;
}

.ks-process-line {
    width: 92%;
    height: 411px;
    position: absolute;
    top: -42px;
    left: 87px;
    z-index: 1;
}

.ks-process-row {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.ks-process-row.top {
    margin-bottom: 50px;
}
.ks-process-row.bottom {
    flex-direction: row-reverse;
}
.ks-process-step {
    width: 30%;
}

.ks-step-icon {
    width: 90px;
    height: 90px;
    border: 2px solid #818181;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.ks-step-icon img {
    width: 42px;
    height: 42px;
}

.ks-process-step h4 {
    margin: 10px 0;
    font-size: 18px;
}

.ks-process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    width: 80%;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .ks-process-line {
        display: none;
    }

    .ks-process-row {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }
.ks-process-row.bottom {
    flex-direction: column;
}
    .ks-process-step {
        width: 100%;
    }
}
