.rp-1aa3071c-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    padding-left: 45px;
}

.rp-1aa3071c-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e5e7eb;
    z-index: 0;
}

.rp-1aa3071c-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.step-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: absolute;
    left: -44px;
    top: 0;
}

.step-number {
    display: none;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 18px;
}

.step-icon svg {
    width: 18px;
    height: 18px;
    fill: #3b82f6;
}

.step-content {
    flex: 1;
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.step-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

@media (min-width: 768px) {
    .rp-1aa3071c-container {
        padding-left: 50%;
    }
    
    .rp-1aa3071c-container::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .rp-1aa3071c-step {
        width: 50%;
    }

    .rp-1aa3071c-step:nth-child(odd) {
        align-self: flex-start;
        padding-right: 30px;
        text-align: right;
        flex-direction: row-reverse;
    }

    .rp-1aa3071c-step:nth-child(odd) .step-icon-wrapper {
        left: auto;
        right: -20px;
    }

    .rp-1aa3071c-step:nth-child(even) {
        align-self: flex-end;
        padding-left: 30px;
        margin-left: -100%;
    }

    .rp-1aa3071c-step:nth-child(even) .step-icon-wrapper {
        left: -20px;
    }
}