// FAQ — full Q&A from iat.pdf

const FAQ = [
  {
    q: "What is Integrated Attachment Theory coaching?",
    body: (
      <>
        <p>Attachment theory coaching helps you understand how early relationships shaped your emotional patterns, relationship dynamics, and subconscious beliefs. My coaching is based on Integrated Attachment Theory, which focuses on these key steps to healing and developing secure attachment:</p>
        <ul>
          <li><strong>Isolating Core Wounds &amp; Fears:</strong> Identifying the subconscious beliefs formed in childhood that impact your relationships and self-worth.</li>
          <li><strong>Reprogramming Negative Core Beliefs:</strong> Using neuroscience-backed tools to shift limiting beliefs into healthier, empowering ones.</li>
          <li><strong>Mastering Emotional Regulation:</strong> Learning practical techniques to manage triggers, reduce anxiety, and respond instead of reacting.</li>
          <li><strong>Understanding Your Needs &amp; Communicating Them:</strong> Gaining clarity on what you need in relationships and how to express it effectively.</li>
          <li><strong>Creating Healthier Coping Mechanisms:</strong> Replacing unhealthy patterns (like avoidance or people-pleasing) with emotionally balanced strategies.</li>
          <li><strong>Setting &amp; Maintaining Boundaries:</strong> Establishing healthy boundaries to create balance and emotional safety in your relationships.</li>
          <li><strong>Developing Secure Attachment Behaviors:</strong> Practicing strategies that help you build trust, confidence, and deep, fulfilling connections.</li>
        </ul>
        <p>If you've ever felt stuck in unhealthy patterns, struggled with communication, or wanted to break generational cycles, this approach can help you heal, grow, and create secure relationships both with yourself and others.</p>
      </>
    ),
  },
  {
    q: "How is coaching different from therapy?",
    body: (
      <>
        <p>Coaching focuses on personal growth, self-awareness, and achieving specific goals related to relationships, emotional regulation, and breaking generational cycles. It is future-focused and action-oriented, helping you develop healthier patterns and improve your relationships.</p>
        <p>Therapy, on the other hand, is designed to diagnose and treat mental health conditions, explore past trauma in-depth, and provide clinical interventions. If you are struggling with severe anxiety, depression, PTSD, or other mental health disorders, therapy may be a better fit. Coaching can complement therapy but is not a substitute for it.</p>
      </>
    ),
  },
  {
    q: "Who do you work with?",
    body: <p>I primarily work with young parents in their 20s and 30s who want to reparent themselves and break generational trauma patterns. However, I also help anyone struggling with attachment wounds, relationship challenges, and self-worth issues — especially those with anxious preoccupied or fearful avoidant attachment styles who want to build healthier, more secure relationships with themselves and others.</p>,
  },
  {
    q: "Do you work with couples?",
    body: <p>Currently, I focus on 1:1 coaching, but I plan to expand into couples coaching within the next few years.</p>,
  },
  {
    q: "What does a coaching session look like?",
    body: (
      <>
        <p>Each session is 75 minutes long and tailored to your specific needs. We'll start with a Client Discovery Questionnaire, which generally takes 1–2 sessions to complete together. This helps uncover key struggles, subconscious patterns, and limiting beliefs.</p>
        <p>Once we've identified these areas, I'll create a personalized program designed specifically for you. From there, each session will focus on reprogramming negative core beliefs, building emotional regulation skills, and implementing practical strategies for long-term change.</p>
        <p>Once we start your personalized program, you'll also receive daily homework to reinforce what we cover in our sessions. This may include journaling prompts, reflection exercises, or subconscious reprogramming techniques to help integrate these changes into your daily life.</p>
      </>
    ),
  },
  {
    q: "How often do we meet?",
    body: <p>Weekly sessions are strongly encouraged for the best results, as they provide consistency and allow for deeper transformation. Sessions are offered via Zoom or in person (Tampa area).</p>,
  },
  {
    q: "Do you offer support between sessions?",
    body: <p>Yes! Clients receive brief, daily check-in emails for added guidance and accountability.</p>,
  },
  {
    q: "What results can I expect?",
    body: (
      <>
        <p>Clients often feel a weight lifted off their chest as we reprogram negative core beliefs, replacing them with more empowering ones. You'll gain confidence in expressing your boundaries and needs, along with practical tools to communicate them effectively.</p>
        <p>Through this work, you'll also develop emotional regulation skills that not only benefit you but can be passed down to your children, creating healthier patterns for generations to come. While results depend on commitment and consistency, many clients notice shifts within just a few sessions.</p>
      </>
    ),
  },
  {
    q: "Is coaching right for me?",
    body: <p>If you are feeling stuck in unhealthy patterns, struggling with emotional regulation, or want to improve your relationships with yourself or others, coaching can help. If you are unsure, I offer a free consultation to see if we are a good fit.</p>,
  },
];

const FaqPage = () => (
  <main>
    <section className="page-header">
      <div className="container-narrow">
        <Eyebrow>FAQ</Eyebrow>
        <h1>Frequently asked <em>questions.</em></h1>
        <p>
          For pricing questions, visit the <a href="#/services" onClick={navTo("services")} style={{ color: "var(--aa-teal-700)", fontWeight: 600 }}>Services page</a>. If you still cannot find an answer, reach me at <a href="mailto:support@alignedattachments.com" style={{ color: "var(--aa-teal-700)", fontWeight: 600 }}>support@alignedattachments.com</a>.
        </p>
      </div>
    </section>

    <section className="section section-cream" style={{ paddingTop: 16 }}>
      <div className="container" style={{ maxWidth: 880 }}>
        <div className="faq-list">
          {FAQ.map((it, i) => (
            <details key={i} className="faq-item" open={i === 0}>
              <summary>{it.q}</summary>
              <div className="faq-body">{it.body}</div>
            </details>
          ))}
        </div>
      </div>
    </section>

    <section className="mint-cta">
      <div className="container mint-cta-inner">
        <div>
          <h2>Still have a question?</h2>
          <p>Book a free 15-minute consultation and let's talk it through.</p>
        </div>
        <Btn variant="dark" href="#/contact" onClick={navTo("contact")}>Get In Touch</Btn>
      </div>
    </section>
  </main>
);

window.FaqPage = FaqPage;
