export interface FAQItem {
  id: string;
  question: string;
  answer: string;
  isExpanded?: boolean;
}

export interface FAQCategory {
  id: string;
  title: string;
  animation: {
    animation: string;
    duration: number;
    delay: number;
  };
  accordionAnimation: {
    animation: string;
    duration: number;
    delay: number;
  };
  items: FAQItem[];
}

export interface HelpFaqData {
  categories: FAQCategory[];
}

export const helpFaqData: HelpFaqData = {
  categories: [
    {
      id: "general",
      title: "General Questions",
      animation: {
        animation: "fade-up",
        duration: 900,
        delay: 400,
      },
      accordionAnimation: {
        animation: "fade-up",
        duration: 900,
        delay: 500,
      },
      items: [
        {
          id: "collapseOne",
          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.",
          isExpanded: true,
        },
        {
          id: "collapseTwo",
          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.",
          isExpanded: false,
        },
        {
          id: "collapseThree",
          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.",
          isExpanded: false,
        },
        {
          id: "collapseFour",
          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.",
          isExpanded: false,
        },
        {
          id: "collapseFive",
          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.",
          isExpanded: false,
        },
      ],
    },
    {
      id: "privacy",
      title: "Privacy & Support",
      animation: {
        animation: "fade-up",
        duration: 900,
        delay: 400,
      },
      accordionAnimation: {
        animation: "fade-up",
        duration: 900,
        delay: 500,
      },
      items: [
        {
          id: "collapseOne-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.",
          isExpanded: true,
        },
        {
          id: "collapseTwo-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.",
          isExpanded: false,
        },
        {
          id: "collapseThree-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.",
          isExpanded: false,
        },
        {
          id: "collapseFour-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.",
          isExpanded: false,
        },
        {
          id: "collapseFive-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.",
          isExpanded: false,
        },
      ],
    },
    {
      id: "pricing",
      title: "Pricing Package",
      animation: {
        animation: "fade-up",
        duration: 900,
        delay: 400,
      },
      accordionAnimation: {
        animation: "fade-up",
        duration: 900,
        delay: 500,
      },
      items: [
        {
          id: "collapseOne-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.",
          isExpanded: true,
        },
        {
          id: "collapseTwo-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.",
          isExpanded: false,
        },
        {
          id: "collapseThree-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.",
          isExpanded: false,
        },
        {
          id: "collapseFour-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.",
          isExpanded: false,
        },
        {
          id: "collapseFive-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.",
          isExpanded: false,
        },
      ],
    },
  ],
};
