.cp-steps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    direction: rtl;
    margin-top: 40px;
}

.cp-steps-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e5e5;
    z-index: 1;
}

.cp-step-item {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.cp-step-number {
   position: absolute;
    top: -19px;
    left: 62%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
}

.cp-step-icon {
    width: 64px;
    height: 64px;
    background: #fb7d16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.cp-step-icon i,
.cp-step-icon svg {
    font-size: 26px;
    color: #fff;
}

.cp-step-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}

.cp-step-item p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .cp-steps-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .cp-steps-line {
        display: none;
    }
}
