/* TermsOfUseBody.jsx — Terms of Use long-form body content. */

const TermsOfUseBody = () =>
  <section className="section legal-body" data-screen-label="terms-body">
    <div className="container">
      <div className="legal-prose">

        <h2>1. Acceptance of Terms</h2>
        <p>By using this website, you represent that you are at least 18 years old and possess the legal capacity to enter into this agreement. These terms apply to all visitors, users, and clients who access our digital content or submit project information.</p>

        <h2>2. Services and Website Content</h2>
        <p>Our website provides information regarding our contracting and construction offerings, including kitchen remodeling, bathroom remodeling, major structural renovations, commercial buildouts, and custom new home construction.</p>
        <ul>
          <li>All text, images, graphics, and layout designs displayed on this website are the intellectual property of Gus Skyy unless otherwise stated.</li>
          <li>The digital content on this website is intended for informational and marketing purposes only. It does not constitute a legally binding offer or contract for construction services.</li>
        </ul>

        <h2>3. Consultation Requests and Project Estimates</h2>
        <p>When you interact with our website to request a consultation, cost estimate, or project proposal, you agree to provide true, accurate, and complete information.</p>
        <ul>
          <li><b>Submission of Plans:</b> If you submit architectural blueprints, layout preferences, or project budgets through our contact forms, you guarantee that you possess the necessary rights and ownership of those files.</li>
          <li><b>No Guarantees on Preliminary Numbers:</b> Any preliminary cost estimates, project calculators, or ranges provided online are strictly informational. Binding financial agreements and project timelines are only established via formal, signed written contracts after an in-home or on-site consultation.</li>
        </ul>

        <h2>4. Permitted and Prohibited Conduct</h2>
        <p>You agree to use our website only for lawful purposes related to seeking residential or commercial contracting services. You are strictly prohibited from:</p>
        <ul>
          <li>Using the website to transmit any malicious code, viruses, or disruptive software.</li>
          <li>Attempting to gain unauthorized access to our web servers, customer databases, or digital infrastructure.</li>
          <li>Scraping, copying, or duplicating our website content, text generation templates, or graphics for commercial use without express written consent.</li>
        </ul>

        <h2>5. Limitation of Liability</h2>
        <p>To the maximum extent permitted by applicable law, Gus Skyy and its representatives shall not be liable for any direct, indirect, incidental, or consequential damages resulting from your use of, or inability to use, our website. While we make every effort to ensure our digital resources are accurate and up to date, we do not warrant that the website will be entirely free of errors, technical delays, or temporary interruptions.</p>

        <h2>6. Privacy and Data Collection</h2>
        <p>Your submission of personal and project-related data through our forms is governed by our <a href="/privacy-policy">Privacy Policy</a>. By agreeing to these Terms of Use, you also acknowledge and consent to our data processing practices as detailed in that policy.</p>

        <h2>7. Governing Law and Jurisdiction</h2>
        <p>These Terms of Use are governed by and construed in accordance with the laws of the State of New Jersey, without regard to its conflict of law principles. Any legal actions or disputes arising out of your use of this website must be commenced in a state or federal court located in New Jersey.</p>

        <h2>8. Changes to These Terms</h2>
        <p>We reserve the right to update or modify these Terms of Use at any time without prior notice. Any modifications will become effective immediately upon being posted to this webpage. Your continued use of the website following any changes signifies your acceptance of the updated terms.</p>

        <h2>9. Contact Information</h2>
        <p>If you have any questions or concerns regarding these Terms of Use, please reach out to us at:</p>
        <div className="legal-contact">
          <div className="legal-contact__name">Gus Skyy Construction</div>
          <div className="legal-contact__line">Serving North &amp; Central New Jersey</div>
          <div className="legal-contact__row">
            <IconMail size={18} stroke={2.2} />
            <a href="mailto:office@gusskyyco.com">office@gusskyyco.com</a>
          </div>
          <div className="legal-contact__row">
            <IconPhone size={18} stroke={2.2} />
            <a href="tel:9735779383">973-577-9383</a>
          </div>
          <div className="legal-contact__row">
            <IconPin size={18} stroke={2.2} />
            <span>GusSkyyCo.com</span>
          </div>
        </div>
      </div>
    </div>
  </section>;

window.TermsOfUseBody = TermsOfUseBody;
