:root {
  --bg: #eeedec;
  --ink: #24262b;
  --blue: #1352f1;
  --line: #d0d0cc;
  --card: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}
a { color: inherit; }
.retro-banner {
  width: 100%;
  min-height: 35px;
  background: #008080;
  color: #fff;
}
.retro-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(1204px, calc(100% - 40px));
  min-height: 35px;
  margin-inline: auto;
  padding-block: 8px;
  font-size: 16px;
}
.retro-banner img {
  width: 14px;
  height: 19px;
  object-fit: contain;
}
.policy-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: min(1204px, calc(100% - 40px));
  height: 92px;
  margin-inline: auto;
  padding-top: 24px;
}
.policy-header img {
  display: block;
  width: 95px;
}
.back-link {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.policy-page {
  width: min(1204px, calc(100% - 40px));
  margin: 80px auto 120px;
}
.policy-page > header {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 1fr);
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.policy-page h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1;
}
.lead {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}
.meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.meta span {
  padding: 8px 12px;
  border-radius: 16px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.toc {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.toc h2,
.policy-page section h2 {
  margin: 0 0 28px;
  font-size: 32px;
  line-height: 1.1;
}
.toc ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.toc a {
  font-size: 18px;
  text-underline-offset: 4px;
}
.policy-page section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.policy-page section p,
.policy-page section li,
.policy-page td,
.policy-page th {
  font-size: 18px;
  line-height: 1.55;
}
.policy-page section p {
  max-width: 990px;
  margin: 0 0 18px;
}
.policy-page ul {
  max-width: 990px;
  margin: 0;
  padding-left: 24px;
}
.card.grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  overflow: hidden;
  border-radius: 16px;
  background: var(--card);
}
.card.grid > div {
  padding: 18px 20px;
  border-bottom: 1px solid var(--bg);
}
.card.grid > div:nth-child(odd) { font-weight: 700; }
.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  background: var(--card);
}
table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}
th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--bg);
  text-align: left;
  vertical-align: top;
}
th { font-weight: 700; }
.small { font-size: 14px !important; }

@media (max-width: 700px) {
  .retro-banner__inner {
    gap: 6px;
    width: calc(100% - 24px);
    min-height: 44px;
    font-size: 12px;
    text-align: center;
  }
  .retro-banner img {
    width: 11px;
    height: 16px;
  }
  .policy-header,
  .policy-page {
    width: min(320px, calc(100% - 40px));
  }
  .policy-header { height: 78px; }
  .policy-page {
    margin-top: 60px;
    margin-bottom: 80px;
  }
  .policy-page > header {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 60px;
  }
  .policy-page h1 { font-size: 36px; }
  .lead { font-size: 16px; }
  .toc,
  .policy-page section { padding: 60px 0; }
  .toc ul { grid-template-columns: 1fr; }
  .toc h2,
  .policy-page section h2 { font-size: 26px; }
  .policy-page section p,
  .policy-page section li,
  .policy-page td,
  .policy-page th,
  .toc a { font-size: 16px; }
  .card.grid { grid-template-columns: 1fr; }
  .card.grid > div:nth-child(odd) {
    padding-bottom: 4px;
    border-bottom: 0;
  }
  .card.grid > div:nth-child(even) { padding-top: 4px; }
}
