.step {
    animation: fadeIn 0.3s ease;
}

/* Step Indicators */
.step-indicators {
    display: flex;
    justify-content: space-between;
    margin: 0 10px 30px;
    position: relative;
}

.step-indicators::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 25px;
    right: 25px;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
}

.step-indicator {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 12px;
    color: #666;
    transition: all 0.3s ease;
}

.step-indicator.active .step-icon {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(206, 18, 18, 0.2);
}

.step-indicator.active .step-label {
    color: var(--accent-color);
    font-weight: 600;
}

.step-indicator.completed .step-icon {
    background-color: var(--accent-color);
    color: #fff;
}