/* Flow Step Header - Icon and Title Side by Side */
.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--primary-600);
    border-radius: 12px;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 2rem;
    color: var(--white);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0;
    padding: 0;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.75rem;
    }
    
    .step-title {
        font-size: 1.25rem;
        padding: 0.6rem 1.2rem;
    }
}
