:root {
  --text: #202124;
  --muted: #6b7280;
  --line: #e5e7eb;
  --accent: #5b4638;
  --bg-soft: #fafafa;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: Arial, "Noto Sans", sans-serif;
  font-size: 17px;
  line-height: 1.62;
}

.page {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 20px 52px;
}

.doc-header {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.brand {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.back {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
}

.doc h2 {
  margin: 30px 0 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 700;
}

.doc h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.doc p {
  margin: 0 0 12px;
}

.meta-line {
  margin-bottom: 4px !important;
  color: var(--muted);
  font-size: 15px;
}

.clause {
  padding-left: 0;
}

.clause strong {
  font-weight: 700;
}

.list-item {
  margin-left: 22px !important;
}

.list-item strong {
  font-weight: 700;
}

.space {
  height: 6px;
}

.grid {
  display: grid;
  gap: 10px;
}

.doc-card {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  color: inherit;
  text-decoration: none;
}

.doc-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.doc-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.35;
}

.footer {
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
    line-height: 1.58;
  }

  .page {
    padding: 20px 16px 40px;
  }

  h1 {
    font-size: 25px;
  }

  .doc h2 {
    font-size: 19px;
  }

  .list-item {
    margin-left: 14px !important;
  }
}
