.bg-purple-light { background-color: #f3e8ff; }
.bg-teal-light { background-color: #e6fcf7; }
.text-purple { color: #6f42c1; }
.text-teal { color: #20c997; }

.steps {
    position: relative;
    padding-left: 50px;
}
.step {
    position: relative;
    padding-bottom: 30px;
}
.step-number {
    position: absolute;
    left: -50px;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: -32px;
    top: 36px;
    bottom: 0;
    width: 2px;
    background-color: #0dcaf0;
}
.step-content {
    background: white;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.bg-orange-light {
    background-color: #fdb18e;
}

.bg-purple-light {
    background-color: #dec5fa;
}
.bg-teal-light {
    background-color: #e6fcf7;
}
.text-purple {
    color: #6f42c1;
}
.text-teal {
    color: #20c997;
}
.text-warning {
    color: #ffc107;
}
.text-primary {
    color: #0d6efd;
}