:root {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --text-primary: #171717;
  --text-secondary: #505050;
  --accent: #005dfb;
  --border: #d1d5dc;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  padding: 32px 16px 48px;
}

.policy-wrap {
  max-width: 920px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 28px 32px;
}

.policy-title {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.25;
  font-weight: 700;
  color: var(--text-primary);
  text-wrap: balance;
}

.policy-updated {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.policy-link {
  margin: 0 0 26px;
  display: inline-flex;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  font-size: 15px;
  line-height: 1.45;
}

.policy-link:hover {
  text-decoration-thickness: 2px;
}

.policy-section + .policy-section {
  margin-top: 24px;
}

.policy-section__title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--text-primary);
}

.policy-paragraph {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.policy-paragraph + .policy-paragraph {
  margin-top: 10px;
}

.policy-section-list {
  margin: 10px 0 0;
  padding-left: 24px;
}

.policy-section-list li {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.policy-section-list li + li {
  margin-top: 6px;
}

.policy-section-list li::marker {
  color: var(--text-secondary);
}

@media screen and (max-width: 768px) {
  body {
    padding: 20px 12px 28px;
  }

  .policy-wrap {
    border-radius: 12px;
    padding: 18px 14px 22px;
  }

  .policy-title {
    margin-bottom: 12px;
    font-size: 22px;
  }

  .policy-link {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .policy-section + .policy-section {
    margin-top: 18px;
  }

  .policy-section__title {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .policy-paragraph,
  .policy-section-list li {
    font-size: 15px;
    line-height: 1.6;
  }

  .policy-section-list {
    margin-top: 8px;
    padding-left: 20px;
  }

  .policy-section-list li + li {
    margin-top: 5px;
  }
}
