graph TD
subgraph SeedGenerator
A[Input: business_profile.json]
B[Task 1: Extract & Sort Lists]
C[Task 2: Generate Seed Phrases]
D[Task 3: Create CSV]
E[Output: seed_keywords.csv]
A -->|JSON data| B
B -->|sorted-service-location-lists| C
C -->|seed-phrase-list| D
D -->|final output| E
style A fill:#f9f,stroke:#333,stroke-width:2px
style E fill:#9ff,stroke:#333,stroke-width:2px
end