.angie-stepwise-booking-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.angie-step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.angie-step-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: -20px;
    width: 2px;
    background-color: #e0e0e0;
}

.angie-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    z-index: 1;
}

.angie-step-icon svg {
    width: 1em;
    height: 1em;
}

.angie-step-content {
    flex-grow: 1;
    padding-top: 8px;
}

.angie-step-title {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.angie-step-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}