.how-it-works {
    padding: 5rem 5%;
    position: relative;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.5s ease;
}

.step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--dark);
    flex-shrink: 0;
}

.step-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    opacity: 0.8;
    line-height: 1.6;
}