:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: #f4f8f6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  line-height: 1.65;
  background: #f4f8f6;
}

a {
  color: #0667d8;
}

.site-header {
  border-bottom: 1px solid #dbe6e1;
  background: rgba(255, 255, 255, 0.94);
}

.site-header__inner,
main,
.site-footer__inner {
  width: min(100% - 32px, 900px);
  margin: 0 auto;
}

.site-header__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0d1828;
  font-size: 20px;
  font-weight: 850;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
}

.switch-policy {
  font-size: 14px;
  font-weight: 750;
}

main {
  padding: 54px 0 72px;
}

.eyebrow {
  margin: 0 0 8px;
  color: #008a4d;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2 {
  color: #0d1828;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 7vw, 54px);
  line-height: 1.08;
}

.lead {
  max-width: 720px;
  margin: 18px 0 12px;
  color: #42534a;
  font-size: 18px;
}

.meta {
  margin: 0;
  color: #65746d;
  font-size: 14px;
  font-weight: 650;
}

.summary,
.policy-section,
.deletion {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid #dbe6e1;
  border-radius: 8px;
  background: #ffffff;
}

.summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.summary strong,
.summary span {
  display: block;
}

.summary strong {
  margin-bottom: 4px;
  color: #0d1828;
}

.summary span {
  color: #536159;
  font-size: 14px;
}

.policy-section h2,
.deletion h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.policy-section p,
.policy-section ul,
.deletion p,
.deletion ol {
  margin-top: 10px;
  margin-bottom: 0;
}

li + li {
  margin-top: 8px;
}

.deletion {
  border-color: #9bd8bc;
  background: #eefaf4;
}

.button {
  display: inline-block;
  margin-top: 16px;
  padding: 11px 16px;
  border-radius: 6px;
  color: #ffffff;
  background: #007d45;
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid #dbe6e1;
  color: #536159;
  background: #ffffff;
}

.site-footer__inner {
  padding: 24px 0;
  font-size: 14px;
}

@media (max-width: 680px) {
  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  main {
    padding-top: 38px;
  }

  .summary {
    grid-template-columns: 1fr;
  }

  .summary,
  .policy-section,
  .deletion {
    padding: 19px;
  }
}
