Summer Sale – Use code oxbow20 at checkout for a 20% discount.

faq

1
<div class="max-w-7xl mx-auto">
  <div>
    <p class="text-sm font-bold uppercase text-blue-600">Tagline</p>
    <h2
      class="text-2xl md:text-3xl lg:text-4xl mt-4 font-semibold text-zinc-900 lg:text-balance"
    >
      Frequently Asked Questions
    </h2>
    <p class="text-base mt-4 font-medium text-zinc-500">
      Everything you need to know about our platform.
    </p>
  </div>
  <ul role="list" class="mt-12 space-y-8 divide-y divide-zinc-900/10">
    <div class="pt-8 lg:grid lg:grid-cols-12 lg:gap-12">
      <div class="lg:col-span-5">
        <h3 class="text-lg md:text-xl font-medium text-zinc-900">
          How does end-to-end encryption work?
        </h3>
      </div>
      <div class="mt-4 lg:col-span-7 lg:mt-0">
        <p class="text-base font-medium text-zinc-500">
          End-to-end encryption ensures that only the sender and recipient can
          access the content of a message.
        </p>
      </div>
    </div>
    <div class="pt-8 lg:grid lg:grid-cols-12 lg:gap-12">
      <div class="lg:col-span-5">
        <h3 class="text-lg md:text-xl font-medium text-zinc-900">
          Can I access my encrypted data if I forget my encryption key?
        </h3>
      </div>
      <div class="mt-4 lg:col-span-7 lg:mt-0">
        <p class="text-base font-medium text-zinc-500">
          No, forgetting or losing your encryption key means that your encrypted
          data cannot be accessed.
        </p>
      </div>
    </div>
    <div class="pt-8 lg:grid lg:grid-cols-12 lg:gap-12">
      <div class="lg:col-span-5">
        <h3 class="text-lg md:text-xl font-medium text-zinc-900">
          Are there any limitations to the self-destructing messages feature?
        </h3>
      </div>
      <div class="mt-4 lg:col-span-7 lg:mt-0">
        <p class="text-base font-medium text-zinc-500">
          Self-destructing messages are designed to automatically delete
          themselves after a specific period or upon being read by the
          recipient.
        </p>
      </div>
    </div>
    <div class="pt-8 lg:grid lg:grid-cols-12 lg:gap-12">
      <div class="lg:col-span-5">
        <h3 class="text-lg md:text-xl font-medium text-zinc-900">
          What happens if I enable two-factor authentication and lose my device?
        </h3>
      </div>
      <div class="mt-4 lg:col-span-7 lg:mt-0">
        <p class="text-base font-medium text-zinc-500">
          Losing your device doesn&#39;t automatically compromise your
          account&#39;s security.
        </p>
      </div>
    </div>
    <div class="pt-8 lg:grid lg:grid-cols-12 lg:gap-12">
      <div class="lg:col-span-5">
        <h3 class="text-lg md:text-xl font-medium text-zinc-900">
          Is my personal information shared or sold to third parties?
        </h3>
      </div>
      <div class="mt-4 lg:col-span-7 lg:mt-0">
        <p class="text-base font-medium text-zinc-500">
          No, we strictly adhere to a privacy-centric approach. Your personal
          information is never shared, sold, or monetized. We prioritize your
          privacy and ensure that your data remains confidential and only
          accessible to you.
        </p>
      </div>
    </div>
    <!-- More questions... -->
  </ul>
</div>