.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--info-color) 100%);
    color: white;
    padding: 80px 0;
}

.step-indicator {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-item {
    text-align: center;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--light-color);
    transform: translateY(-50%);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 600;
    font-size: 18px;
}

.step-item.active .step-number {
    background: var(--primary-color);
    color: white;
}

.step-item.completed .step-number {
    background: var(--success-color);
    color: white;
}

.form-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
}

.required {
    color: var(--danger-color);
}

.privacy-section {
    background: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    max-height: 400px;
    overflow-y: auto;
}





.btn-custom {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
}

.btn-primary:hover {
    background: #0b5ed7;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:disabled {
    background: var(--secondary-color);
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .step-item:not(:last-child)::after {
        display: none;
    }

    .form-section {
        padding: 20px;
    }

    .hero-section {
        padding: 40px 0;
    }
}
