:root {
  --ink: #202A25;
  --muted: #6B7268;
  --bg: #FAFBF8;
  --surface: #FFFFFF;
  --border: #E7EBE4;
  --accent: #E0563F;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, "Apple SD Gothic Neo", "Malgun Gothic", "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.brand-badge {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-badge img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-name {
  font-weight: 700;
  font-size: 18px;
}

h1 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
}

h2 {
  font-size: 19px;
  font-weight: 700;
  margin: 40px 0 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

h2:first-of-type { border-top: none; padding-top: 0; }

p { margin: 0 0 14px; color: var(--ink); }

.muted { color: var(--muted); font-size: 14px; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 20px;
  font-size: 14px;
}

th, td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--border);
  vertical-align: top;
}

th {
  background: #F2F4F0;
  font-weight: 700;
  white-space: nowrap;
}

ul, ol { padding-left: 22px; margin: 0 0 14px; }
li { margin-bottom: 6px; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 14px;
}

.card h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.card p { margin: 0; color: var(--muted); font-size: 14px; }

.footer-nav {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

.footer-nav a { margin-right: 16px; }

strong { font-weight: 700; }
