.pr-steps-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.pr-step-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
}

/* Connecting line */
.pr-step-item::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #e1e1e1;
    z-index: 1;
}

.pr-step-item:last-child::after {
    display: none;
}

.pr-step-number-container {
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.pr-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    border: 2px solid transparent;
    line-height: 1;
}

.pr-step-text-container {
    flex-grow: 1;
    padding-left: 20px;
}

.pr-step-title {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.pr-step-description {
    font-size: 0.95rem;
    line-height: 1.5;
}
