/* About Workflow Section */
.about-workflow {
    padding: 5rem 0;
    background: #f9fafb;
}

.about-workflow__header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-workflow__title {
    font-size: 2.25rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-workflow__subtitle {
    font-size: 1.25rem;
    color: #6b7280;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.workflow-step__number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    flex-shrink: 0;
}

.workflow-step__number--blue { background: #0d58c6; }
.workflow-step__number--green { background: #0d58c6; }
.workflow-step__number--purple { background: #7c3aed; }
.workflow-step__number--orange { background: #f59e0b; }
.workflow-step__number--red { background: #ef4444; }
.workflow-step__number--indigo { background: #6366f1; }
.workflow-step__number--teal { background: #14b8a6; }

.workflow-step__content {
    flex: 1;
}

.workflow-step__title {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.workflow-step__description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .about-workflow {
        padding: 3rem 0;
    }
    
    .about-workflow__title {
        font-size: 1.875rem;
    }
    
    .workflow-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
} 
