:root {
  --privacy-blue: #12365a;
  --privacy-blue-dark: #0a2744;
  --privacy-orange: #f39200;
  --privacy-orange-dark: #d97f00;
  --privacy-white: #ffffff;
  --privacy-background: #f5f7fa;
  --privacy-text: #263442;
  --privacy-muted: #667788;
  --privacy-border: #e4e9ee;
  --privacy-radius: 22px;
  --privacy-shadow: 0 18px 50px rgba(18, 54, 90, 0.12);
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  font-family:
    Arial,
    "Montserrat",
    sans-serif;

  color: var(--privacy-text);

  background:
    linear-gradient(
      180deg,
      #eef3f7 0%,
      var(--privacy-background) 100%
    );

  line-height: 1.7;
}


a {
  color: var(--privacy-blue);
}


a:focus-visible {
  outline: 3px solid var(--privacy-orange);
  outline-offset: 4px;
  border-radius: 4px;
}


/* ======================================================
   HEADER
   ====================================================== */

.privacy-header {
  background:
    linear-gradient(
      135deg,
      var(--privacy-blue-dark),
      var(--privacy-blue)
    );

  color: var(--privacy-white);

  padding: 3.5rem 1.5rem 5rem;

  text-align: center;
}


.privacy-header__content {
  width: min(100%, 900px);

  margin: 0 auto;
}


.privacy-brand {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 2rem;
}


.privacy-brand img {
  display: block;

  width: min(190px, 55vw);

  height: auto;
}


.privacy-header p {
  margin: 0 0 0.5rem;

  color: #f7b64f;

  font-size: 0.85rem;
  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


.privacy-header h1 {
  margin: 0;

  font-size:
    clamp(
      2rem,
      5vw,
      3.4rem
    );

  line-height: 1.1;
}


/* ======================================================
   CONTENT
   ====================================================== */

.privacy-main {
  width: min(100% - 2rem, 960px);

  margin: -2.5rem auto 4rem;
}


.privacy-card {
  background: var(--privacy-white);

  border:
    1px solid
    var(--privacy-border);

  border-radius:
    var(--privacy-radius);

  box-shadow:
    var(--privacy-shadow);

  padding:
    clamp(
      1.5rem,
      4vw,
      3.5rem
    );
}


.privacy-card p {
  margin:
    0 0
    1.5rem;

  font-size:
    clamp(
      1rem,
      1.4vw,
      1.08rem
    );

  color:
    var(--privacy-text);
}


.privacy-card p:last-of-type {
  margin-bottom: 0;
}


.privacy-card a {
  font-weight: 700;

  text-decoration-thickness: 2px;

  text-underline-offset: 3px;
}


/* ======================================================
   ACTIONS
   ====================================================== */

.privacy-actions {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 1rem;

  margin-top: 2.5rem;

  padding-top: 2rem;

  border-top:
    1px solid
    var(--privacy-border);
}


.privacy-button,
.privacy-contact {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 0.85rem 1.4rem;

  border-radius: 999px;

  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}


.privacy-button {
  background:
    var(--privacy-orange);

  color:
    var(--privacy-blue-dark);
}


.privacy-button:hover {
  background:
    var(--privacy-orange-dark);

  transform:
    translateY(-2px);
}


.privacy-contact {
  border:
    1px solid
    var(--privacy-blue);

  color:
    var(--privacy-blue);

  background:
    transparent;
}


.privacy-contact:hover {
  background:
    var(--privacy-blue);

  color:
    var(--privacy-white);

  transform:
    translateY(-2px);
}


/* ======================================================
   FOOTER
   ====================================================== */

.privacy-footer {
  background:
    var(--privacy-blue-dark);

  color:
    var(--privacy-white);

  text-align: center;

  padding:
    1.5rem;
}


.privacy-footer p {
  margin: 0;

  font-size:
    0.9rem;
}


/* ======================================================
   RESPONSIVE
   ====================================================== */

@media (max-width: 600px) {

  .privacy-header {
    padding:
      2.5rem
      1rem
      4rem;
  }


  .privacy-main {
    width:
      min(
        100% - 1.25rem,
        960px
      );
  }


  .privacy-actions {
    flex-direction:
      column;

    align-items:
      stretch;
  }


  .privacy-button,
  .privacy-contact {
    width:
      100%;
  }

}


@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior:
      auto !important;

    transition:
      none !important;
  }

}