import { motion } from "framer-motion"; import { Accordion, AccordionContent, AccordionItem, AccordionTrigger, } from "@/components/ui/accordion"; const FAQ = () => { const faqs = [ { question: "How long does it take to get test results?", answer: "Most test results are available within 24-48 hours. Complex genetic tests may take 5-7 business days. You will be notified via email and our secure online portal as soon as your results are ready." }, { question: "How do I prepare for my test?", answer: "Preparation varies by test type. We'll send you detailed instructions via email and SMS before your appointment. You can also find preparation guidelines on the specific test page on our website." }, { question: "Do I need to fast before my test?", answer: "Fasting requirements depend on the specific test, such as lipid panels or glucose tests. We'll provide clear, personalized preparation instructions when you book your test." }, { question: "Can I get a copy of my results to share?", answer: "Absolutely. You'll receive a comprehensive digital report in PDF format, which you can easily download, print, and share with your healthcare provider or for your personal records." }, { question: "Do you accept insurance?", answer: "We are an out-of-network provider. While we don't directly bill insurance, we can provide you with an itemized receipt (superbill) that you can submit to your insurance company for potential reimbursement." }, { question: "What if I need to reschedule my appointment?", answer: "You can easily reschedule up to 24 hours before your appointment through our online portal or by contacting our dedicated support team. We offer flexible options to fit your schedule." } ]; const containerVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.1 }, }, }; const itemVariants = { hidden: { y: 20, opacity: 0 }, visible: { y: 0, opacity: 1, transition: { type: "spring", stiffness: 100, damping: 12 }, }, }; return (

Frequently Asked Questions

Have questions? We've got answers. Here are some of the most common inquiries we receive.

{faqs.map((faq, index) => ( {faq.question} {faq.answer} ))}
); }; export default FAQ;