:root {
  --green: #03c75a;
  --green-dark: #019747;
  --ink: #17202a;
  --muted: #667085;
  --line: #e4e8ee;
  --bg: #f4f7f6;
  --card: #ffffff;
  --shadow: 0 10px 28px rgba(23, 32, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  background: #dfe6e3;
}

body {
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  color: var(--ink);
  background: var(--bg);
  font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(228, 232, 238, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.back {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f2f6f5;
  color: var(--green-dark);
  font-weight: 900;
}

.header-title strong {
  display: block;
  font-size: 16px;
}

.header-title span {
  color: var(--muted);
  font-size: 12px;
}

.content {
  padding: 16px 14px 34px;
}

.legal-section {
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.legal-section + .legal-section {
  margin-top: 12px;
}

.legal-section h1,
.legal-section h2 {
  margin: 0;
  font-weight: 900;
}

.legal-section h1 {
  font-size: 22px;
}

.legal-section h2 {
  font-size: 16px;
}

.legal-section p,
.legal-section li {
  color: #344054;
  font-size: 14px;
  line-height: 1.65;
}

.legal-section p {
  margin: 10px 0 0;
}

.legal-section ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.legal-date {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.site-footer {
  padding: 22px 8px 4px;
  color: #7b8794;
  text-align: center;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.footer-links span {
  color: #c4ccd6;
}

.company-info {
  display: grid;
  gap: 3px;
  margin-bottom: 8px;
  color: #667085;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

.company-info p {
  margin: 0;
}

.site-footer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}
