export interface FaqListItem {
  icon: string;
  text: string;
}

export interface FaqItem {
  id: string;
  headingId: string;
  collapseId: string;
  question: string;
  answer: string;
  listItems: FaqListItem[];
  isOpen: boolean;
}

export interface FaqSectionData {
  subTitle: string;
  title: string;
  description: string;
  faqs: FaqItem[];
}

export const faqSectionData: FaqSectionData = {
  subTitle: "FAQs",
  title: "Frequently Asked Questions",
  description:
    "Our FAQs are designed to give you clear and concise answers about our fintech solutions, services, and processes.",
  faqs: [
    {
      id: "1",
      headingId: "headingOne",
      collapseId: "collapseOne",
      question: "1. What types of fintech solutions do you offer?",
      answer:
        "Security is our top priority. All solutions are built with advanced encryption, secure authentication, and regulatory compliance to protect sensitive financial data.",
      listItems: [
        { icon: "/assets/images/icon/check1-2.svg", text: "Secure digital payments" },
        { icon: "/assets/images/icon/check1-2.svg", text: "Basic financial analytics" },
        { icon: "/assets/images/icon/check1-2.svg", text: "Customizable Solutions" },
      ],
      isOpen: true,
    },
    {
      id: "2",
      headingId: "headingTwo",
      collapseId: "collapseTwo",
      question: "2. How secure are your platforms?",
      answer:
        "Security is our top priority. All solutions are built with advanced encryption, secure authentication, and regulatory compliance to protect sensitive financial data.",
      listItems: [
        { icon: "/assets/images/icon/check1-2.svg", text: "Secure digital payments" },
        { icon: "/assets/images/icon/check1-2.svg", text: "Basic financial analytics" },
        { icon: "/assets/images/icon/check1-2.svg", text: "Customizable Solutions" },
      ],
      isOpen: false,
    },
    {
      id: "3",
      headingId: "headingThree",
      collapseId: "collapseThree",
      question: "3. Can your solutions integrate with existing systems?",
      answer:
        "Security is our top priority. All solutions are built with advanced encryption, secure authentication, and regulatory compliance to protect sensitive financial data.",
      listItems: [
        { icon: "/assets/images/icon/check1-2.svg", text: "Secure digital payments" },
        { icon: "/assets/images/icon/check1-2.svg", text: "Basic financial analytics" },
        { icon: "/assets/images/icon/check1-2.svg", text: "Customizable Solutions" },
      ],
      isOpen: false,
    },
    {
      id: "4",
      headingId: "headingFour",
      collapseId: "collapseFour",
      question: "4. How long does it take to implement a fintech solution?",
      answer:
        "Security is our top priority. All solutions are built with advanced encryption, secure authentication, and regulatory compliance to protect sensitive financial data.",
      listItems: [
        { icon: "/assets/images/icon/check1-2.svg", text: "Secure digital payments" },
        { icon: "/assets/images/icon/check1-2.svg", text: "Basic financial analytics" },
        { icon: "/assets/images/icon/check1-2.svg", text: "Customizable Solutions" },
      ],
      isOpen: false,
    },
    {
      id: "5",
      headingId: "headingFive",
      collapseId: "collapseFive",
      question: "5. Do you offer customization for specific business needs?",
      answer:
        "Security is our top priority. All solutions are built with advanced encryption, secure authentication, and regulatory compliance to protect sensitive financial data.",
      listItems: [
        { icon: "/assets/images/icon/check1-2.svg", text: "Secure digital payments" },
        { icon: "/assets/images/icon/check1-2.svg", text: "Basic financial analytics" },
        { icon: "/assets/images/icon/check1-2.svg", text: "Customizable Solutions" },
      ],
      isOpen: false,
    },
  ],
};
