:root {
  color: #173719;
  background: #f4eee3;
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

body { margin: 0; }

a { color: inherit; text-underline-offset: 4px; }

.privacy-header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(22px, 6vw, 84px);
  background: #102a18;
  color: #f4eee3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 7vw, 96px);
  width: min(1100px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 100px) 0;
}

section { max-width: 520px; }

.eyebrow {
  margin: 0 0 12px;
  color: #65734e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 { margin: 0 0 28px; font-size: clamp(42px, 6vw, 68px); }
h2 { margin: 34px 0 10px; font-size: 24px; }
p { margin: 0 0 16px; font-size: 17px; line-height: 1.7; }
footer { justify-content: center; }

@media (max-width: 760px) {
  .privacy-header { align-items: flex-start; flex-direction: column; }
  main { grid-template-columns: 1fr; }
}
