/* Additional styles for steps */
.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.step-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
    z-index: 1;
}

.step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 30px;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.step-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    flex-grow: 1;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

@media (max-width: 768px) {
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .step-line {
        left: 40px;
        height: calc(100% - 80px);
        top: 80px;
    }
}