:root {
  --ink: #173a38;
  --teal: #176c66;
  --deep: #104f4c;
  --paper: #f7f8f4;
  --line: #dce6e1;
  --muted: #647772;
  --gold: #bd9860;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #edf2ee;
  font-family: Arial, sans-serif;
}

a {
  color: inherit;
}

.privacy-page {
  width: min(760px, 100%);
  min-height: 100vh;
  margin: auto;
  background: var(--paper);
}

.privacy-page > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}

.privacy-page > header a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-decoration: none;
}

.privacy-page > header i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--deep);
  font: normal 17px Georgia, serif;
  letter-spacing: 0;
}

.privacy-page > header span {
  color: var(--muted);
  font-size: 11px;
}

article {
  padding: 38px 40px 46px;
}

article > small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

h1 {
  margin: 10px 0 18px;
  font: 42px/1.04 Georgia, serif;
}

.lead {
  margin-bottom: 34px;
  color: #526762;
  font-size: 16px;
  line-height: 1.55;
}

section {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0 0 8px;
  font: 23px Georgia, serif;
}

section p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

section a {
  color: var(--teal);
  font-weight: 800;
}

article footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

article footer a {
  color: var(--teal);
  font-weight: 800;
}

@media (max-width: 600px) {
  article {
    padding: 30px 22px 38px;
  }

  h1 {
    font-size: 35px;
  }

  article footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
