:root {
  --policy-bg: #fceaeb;
  --policy-surface: #ffffff;
  --policy-ink: #21090d;
  --policy-muted: #512129;
  --policy-accent: #3772ff;
  --policy-border: #e3c9cd;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--policy-bg);
  color: var(--policy-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

a {
  color: #1749bf;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #0e2f80;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #ffee00;
  outline-offset: 3px;
}

.policy-header,
.policy-footer {
  background: #21090d;
  color: #ffffff;
}

.policy-header__inner,
.policy-footer__inner,
.policy-main {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.policy-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
}

.policy-brand {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.policy-nav a {
  color: #ffffff;
}

.policy-main {
  padding: 3.5rem 0 4.5rem;
}

.policy-article {
  padding: clamp(1.25rem, 4vw, 3.5rem);
  background: var(--policy-surface);
  border: 1px solid var(--policy-border);
  border-radius: 1.25rem;
  box-shadow: 0 18px 50px rgba(33, 9, 13, 0.08);
}

.policy-article h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
}

.policy-article h2 {
  margin: 2.5rem 0 0.85rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.25;
}

.policy-article h3 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.2rem;
  line-height: 1.35;
}

.policy-article p,
.policy-article li {
  color: #341218;
}

.policy-meta,
.policy-note {
  color: var(--policy-muted);
}

.policy-contact {
  padding: 1.25rem;
  background: #f8eef0;
  border-left: 5px solid var(--policy-accent);
  border-radius: 0.5rem;
}

.policy-article ul,
.policy-article ol {
  padding-left: 1.4rem;
}

.policy-footer__inner {
  padding: 2rem 0;
  text-align: center;
}

.policy-footer a {
  color: #ffffff;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  background: #ffffff;
  color: #21090d;
  border: 2px solid #3772ff;
  border-radius: 0.5rem;
}

.skip-link:focus {
  transform: translateY(0);
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .policy-header__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
  }

  .policy-nav {
    flex-direction: column;
  }

  .policy-main {
    padding-top: 1.5rem;
  }
}
