/* eslint-disable */
// Privacy Policy.
//
// The body text is reproduced verbatim from the live site at
// https://www.intelligenceassist.com.au/privacy-policy/
// This is a legal document: do not reword, condense or "tidy" any clause here.
// If the wording needs to change, change it on the source of truth first.
//
// LP / LClause / LDef / LH2 / LH3 are shared, defined in components.jsx.
//
// Note: the source policy carries no postal address and no ACN, so none is added
// here. It names Janey Treleaven as the complaints contact and janey@ as the
// privacy contact address, both of which are reproduced as written.

function PrivacyScreen({ go }) {
  return (
    <div data-screen-label="21 Privacy Policy">
      {/* HERO — no lede: the source document opens straight into clause 1. */}
      <section className="hero dot-grid acc-hero acc-hero--blend">
        <div className="container">
          <Crumbs items={[{ label: "Home", to: "home" }, "Privacy Policy"]} go={go} />
          <div className="svc-hero svc-hero--solo">
            <div>
              <h1 className="h-display" style={{ maxWidth: "18ch" }}>
                Privacy <em>Policy</em>
              </h1>
            </div>
          </div>
        </div>
      </section>

      <section className="section section--white" style={{ paddingTop: 56, paddingBottom: 88 }}>
        <div className="container">
          {/* data-no-reveal, as on Terms: the scroll reveal fires at 4% visibility,
              which a long single block cannot reach on a phone. */}
          <div className="legal-body" data-no-reveal>

            {/* ---------------- 1 ---------------- */}
            <LH2 n="1.">What is &ldquo;personal information&rdquo;?</LH2>
            <LClause>
              (a) The Privacy Act 1988 (Cth) currently defines &ldquo;personal information&rdquo; as
              meaning information or an opinion about an identified individual or an individual who
              is reasonably identifiable:
            </LClause>
            <LClause className="legal-clause--sub">
              (i) whether the information or opinion is true or not; and
            </LClause>
            <LClause className="legal-clause--sub">
              (ii) whether the information or opinion is recorded in a material form or not.
            </LClause>
            <LClause>
              (b) If the information does not disclose your identity or enable your identity to be
              ascertained, it will in most cases not be classified as &ldquo;personal
              information&rdquo; and will not be subject to this privacy policy.
            </LClause>

            {/* ---------------- 2 ---------------- */}
            <LH2 n="2.">What information do we collect?</LH2>
            <LP>
              The kind of personal information that we collect from you will depend on how you use
              the website. The personal information which we collect and hold about you may include:
              name, email address, phone number, address.
            </LP>

            {/* ---------------- 3 ---------------- */}
            <LH2 n="3.">How we collect your personal information</LH2>
            <LClause>
              (a) We may collect personal information from you whenever you input such information
              into the website.
            </LClause>
            <LClause>
              (b) We also collect cookies from your computer which enable us to tell when you use the
              website and also to help customise your website experience. As a general rule, however,
              it is not possible to identify you personally from our use of cookies.
            </LClause>

            {/* ---------------- 4 ---------------- */}
            <LH2 n="4.">Purpose of collection</LH2>
            <LClause>
              (a) The purpose for which we collect personal information is to provide you with the
              best service experience possible on the website.
            </LClause>
            <LClause>
              (b) We customarily disclose personal information only to our service providers who
              assist us in operating the website. Your personal information may also be exposed from
              time to time to maintenance and support personnel acting in the normal course of their
              duties.
            </LClause>
            <LClause>
              (c) By using our website, you consent to the receipt of direct marketing material. We
              will only use your personal information for this purpose if we have collected such
              information direct from you, and if it is material of a type which you would reasonably
              expect to receive from us. We do not use sensitive personal information in direct
              marketing activity. Our direct marketing material will include a simple means by which
              you can request not to receive further communications of this nature.
            </LClause>

            {/* ---------------- 5 ---------------- */}
            <LH2 n="5.">Access and correction</LH2>
            <LP>
              Australian Privacy Principle 12 permits you to obtain access to the personal
              information we hold about you in certain circumstances, and Australian Privacy
              Principle 13 allows you to correct inaccurate personal information subject to certain
              exceptions. If you would like to obtain such access, please contact us as set out
              below.
            </LP>

            {/* ---------------- 6 ---------------- */}
            <LH2 n="6.">Complaint procedure</LH2>
            <LP>
              If you have a complaint concerning the manner in which we maintain the privacy of your
              personal information, please contact us as set out below. All complaints will be
              considered by Janey Treleaven and we may seek further information from you to clarify
              your concerns. If we agree that your complaint is well founded, we will, in consultation
              with you, take appropriate steps to rectify the problem. If you remain dissatisfied with
              the outcome, you may refer the matter to the Office of the Australian Information
              Commissioner.
            </LP>

            {/* ---------------- 7 ---------------- */}
            <LH2 n="7.">Overseas transfer</LH2>
            <LP>
              Your personal information will not be disclosed to recipients outside Australia unless
              you expressly request us to do so. If you request us to transfer your personal
              information to an overseas recipient, the overseas recipient will not be required to
              comply with the Australian Privacy Principles and we will not be liable for any
              mishandling of your information in such circumstances.
            </LP>

            {/* ---------------- 8 ---------------- */}
            <LH2 n="8.">How to contact us about privacy</LH2>
            <LP>
              If you have any queries, or if you seek access to your personal information, or if you
              have a complaint about our privacy practices, you can contact us through:{" "}
              <a href="mailto:janey@intelligenceassist.com.au">janey@intelligenceassist.com.au</a>.
            </LP>

          </div>
        </div>
      </section>
    </div>
  );
}

window.PrivacyScreen = PrivacyScreen;
