export interface Question { id: string; text: string; category: string; priority: 'high' | 'medium' | 'low'; } export interface Section { id: string; title: string; subtitle: string; icon: string; questions: Question[]; } export interface MeetingOverview { date: string; target: string; purpose: string[]; }