"use client";

const TermsOfServiceContent = () => {
  return (
    <section className="py-10 lg:py-16 px-4 sm:px-6">
      <div className="max-w-4xl mx-auto bg-white border border-[#E5E7EB] rounded-2xl p-6 lg:p-10 shadow-sm">
        <h2 className="text-lg lg:text-xl font-semibold text-[#3B3B3B]">
          1. Agreement to Terms
        </h2>
        <p className="mt-2 text-sm lg:text-base text-[#676767] leading-relaxed">
          These Terms of Service constitute a legally binding agreement made
          between you, whether personally or on behalf of an entity ("you") and
          Aurrganic ("we," "us" or "our"), concerning your access to and use of
          our website as well as any other media form, media channel, mobile
          website or mobile application related, linked, or otherwise connected
          thereto.
        </p>

        <h2 className="mt-6 text-lg lg:text-xl font-semibold text-[#3B3B3B]">
          2. Intellectual Property Rights
        </h2>
        <p className="mt-2 text-sm lg:text-base text-[#676767] leading-relaxed">
          Unless otherwise indicated, the Site is our proprietary property and
          all source code, databases, functionality, software, website designs,
          audio, video, text, photographs, and graphics on the Site
          (collectively, the "Content") and the trademarks, service marks, and
          logos contained therein (the "Marks") are owned or controlled by us or
          licensed to us.
        </p>

        <h2 className="mt-6 text-lg lg:text-xl font-semibold text-[#3B3B3B]">
          3. User Representations
        </h2>
        <p className="mt-2 text-sm lg:text-base text-[#676767] leading-relaxed">
          By using the Site, you represent and warrant that:
        </p>

        <ul className="mt-3 space-y-2 text-sm lg:text-base text-[#676767] list-disc pl-5">
          <li>
            All registration information you submit will be true, accurate,
            current, and complete.
          </li>
          <li>
            You will maintain the accuracy of such information and promptly
            update such registration information as necessary.
          </li>
          <li>
            You have the legal capacity and you agree to comply with these Terms
            of Service.
          </li>
          <li>
            You will not use the Site for any illegal or unauthorized purpose.
          </li>
        </ul>

        <h2 className="mt-6 text-lg lg:text-xl font-semibold text-[#3B3B3B]">
          4. Prohibited Activities
        </h2>
        <p className="mt-2 text-sm lg:text-base text-[#676767] leading-relaxed">
          You may not access or use the Site for any purpose other than that for
          which we make the Site available. The Site may not be used in
          connection with any commercial endeavors except those that are
          specifically endorsed or approved by us.
        </p>

        <h2 className="mt-6 text-lg lg:text-xl font-semibold text-[#3B3B3B]">
          5. Governing Law
        </h2>
        <p className="mt-2 text-sm lg:text-base text-[#676767] leading-relaxed">
          These Terms shall be governed by and defined following the laws of
          India. Aurrganic and yourself irrevocably consent that the courts of
          India shall have exclusive jurisdiction to resolve any dispute which
          may arise in connection with these terms.
        </p>
      </div>
    </section>
  );
};

export default TermsOfServiceContent;
