/** Homepage FAQ — crm-html/index.html faq-sec (accordion column + illustration). */

export interface HomeFaqSectionIntro {
  subTitle: string;
  title: string;
  description: string;
}

export interface HomeFaqItem {
  id: string;
  question: string;
  answer: string;
  defaultOpen: boolean;
}

export interface HomeFaqContent {
  items: HomeFaqItem[];
  illustrationSrc: string;
  illustrationAlt: string;
}

export const homeFaqContent: HomeFaqContent = {
  items: [
    {
      id: "faq-1",
      question: "1. What is a CRM and why do I need it?",
      answer:
        "A CRM (Customer Relationship Management) system businesses manage interactions with leads and customers. It centralizes your data, automates tasks",
      defaultOpen: true,
    },
    {
      id: "faq-2",
      question: "2. Is your CRM suitable for small businesses?",
      answer:
        "Delivering seamless speed and instant responsiveness for a smooth, reliable digital experience.",
      defaultOpen: false,
    },
    {
      id: "faq-3",
      question: "3. Can I integrate this CRM with other tools use?",
      answer:
        "Optimized for every device, ensuring seamless access, smooth navigation, and consistent user experience.",
      defaultOpen: false,
    },
    {
      id: "faq-4",
      question: "4. Is the CRM mobile-friendly?",
      answer:
        "Designed for everyone, everywhere, providing equal access and seamless digital experiences worldwide.",
      defaultOpen: false,
    },
    {
      id: "faq-5",
      question: "5. Can I customize the CRM for my specific?",
      answer:
        "Work together instantly, share ideas seamlessly, and boost productivity with real-time connected teamwork.",
      defaultOpen: false,
    },
  ],
  illustrationSrc: "/assets/images/event/faq1-1.png",
  illustrationAlt: "Frequently Asked Questions illustration",
};
