export interface FaqItem {
  id: string;
  question: string;
  answer: string;
}

export interface FaqGroup {
  id: string;
  title: string;
  items: FaqItem[];
}

export const helpFaqData: FaqGroup[] = [
  {
    id: "accordionExample",
    title: "General Questions",
    items: [
      {
        id: "One",
        question: "1. What is included in the free plan?",
        answer:
          "We reimburse all expenses of the Client for the payment of fines and penalties that were caused by mistakes made by us in accounting and tax accounting and reporting.",
      },
      {
        id: "Two",
        question: "2. Can I cancel my subscription at any time?",
        answer:
          "We reimburse all expenses of the Client for the payment of fines and penalties that were caused by mistakes made by us in accounting and tax accounting and reporting.",
      },
      {
        id: "Three",
        question: "3. Is my data safe with your platform?",
        answer:
          "We reimburse all expenses of the Client for the payment of fines and penalties that were caused by mistakes made by us in accounting and tax accounting and reporting.",
      },
      {
        id: "Four",
        question: "4. Do you offer team or enterprise plans?",
        answer:
          "We reimburse all expenses of the Client for the payment of fines and penalties that were caused by mistakes made by us in accounting and tax accounting and reporting.",
      },
      {
        id: "Five",
        question: "5. Will the software work on all devices?",
        answer:
          "We reimburse all expenses of the Client for the payment of fines and penalties that were caused by mistakes made by us in accounting and tax accounting and reporting.",
      },
    ],
  },
  {
    id: "accordionExample-a",
    title: "Privacy & Support",
    items: [
      {
        id: "One-a",
        question: "1. How is my personal information protected?",
        answer:
          "We protect your personal information with advanced encryption, secure data storage, and strict privacy policies, ensuring it remains safe and accessible only to authorized personnel.",
      },
      {
        id: "Two-a",
        question: "2. Do you store my payment details?",
        answer:
          "No. All payment transactions are processed through trusted third-party gateways. We do not store any credit card or financial details on our servers.",
      },
      {
        id: "Three-a",
        question: "3. Will my project or design files remain confidential?",
        answer:
          "Yes, your project and design files will remain fully confidential. We implement strict security measures, encrypted storage, and access controls to protect your work at every stage.",
      },
      {
        id: "Four-a",
        question: "4. How can I contact support if I need help?",
        answer:
          "You can contact support via email, live chat, or our help center, where our team is ready to assist you with any questions or issues promptly.",
      },
      {
        id: "Five-a",
        question: "5. What if I need revisions or updates after delivery?",
        answer:
          "If you need revisions or updates after delivery, we offer flexible options to make adjustments, ensuring the final result meets your expectations and requirements.",
      },
    ],
  },
  {
    id: "accordionExample-b",
    title: "Pricing Package",
    items: [
      {
        id: "One-b",
        question: "1. What is included in the free plan?",
        answer:
          "We reimburse all expenses of the Client for the payment of fines and penalties that were caused by mistakes made by us in accounting and tax accounting and reporting.",
      },
      {
        id: "Two-b",
        question: "2. Can I cancel my subscription at any time?",
        answer:
          "We reimburse all expenses of the Client for the payment of fines and penalties that were caused by mistakes made by us in accounting and tax accounting and reporting.",
      },
      {
        id: "Three-b",
        question: "3. Is my data safe with your platform?",
        answer:
          "We reimburse all expenses of the Client for the payment of fines and penalties that were caused by mistakes made by us in accounting and tax accounting and reporting.",
      },
      {
        id: "Four-b",
        question: "4. Do you offer team or enterprise plans?",
        answer:
          "We reimburse all expenses of the Client for the payment of fines and penalties that were caused by mistakes made by us in accounting and tax accounting and reporting.",
      },
      {
        id: "Five-b",
        question: "5. Will the software work on all devices?",
        answer:
          "We reimburse all expenses of the Client for the payment of fines and penalties that were caused by mistakes made by us in accounting and tax accounting and reporting.",
      },
    ],
  },
];
