:root {
  --bg: #f4f6ef;
  --bg-soft: #e8eee0;
  --surface: #ffffff;
  --text: #1f2a1f;
  --muted: #5b6a57;
  --line: #d6dfcf;
  --olive: #556b2f;
  --olive-strong: #3f5122;
  --olive-soft: #e2ead6;
  --radius: 16px;
  --shadow: 0 14px 34px rgba(48, 64, 28, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: radial-gradient(circle at top, #f9fbf5 0%, var(--bg) 45%, var(--bg-soft) 100%);
  min-height: 100vh;
}

a {
  color: var(--olive);
  text-decoration: none;
}

a:hover {
  color: var(--olive-strong);
}

.page-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(244, 246, 239, 0.9);
  border-bottom: 1px solid rgba(85, 107, 47, 0.15);
}

.site-header-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--olive-strong);
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
  background: var(--olive-soft);
  color: var(--olive-strong);
}

.hero {
  margin-top: 28px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1.28;
  color: var(--olive-strong);
  letter-spacing: -0.02em;
}

.hero p {
  margin-top: 10px;
  color: var(--muted);
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.content-card h2 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--olive-strong);
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card h3 {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 1rem;
  color: var(--olive);
}

.content-card p,
.content-card li {
  color: #2e3a2b;
  font-size: 0.99rem;
}

.content-card p + p {
  margin-top: 10px;
}

.content-card ul,
.content-card ol {
  margin: 10px 0 12px 20px;
}

.content-card li + li {
  margin-top: 4px;
}

.meta-note {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #f6f9f0;
  border: 1px solid var(--line);
  color: #44523d;
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fcfdf9;
}

.faq-item h3 {
  margin: 0 0 6px;
}

.site-footer {
  margin-top: 28px;
  padding: 20px 0 34px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

@media (max-width: 760px) {
  .site-header-inner,
  .page-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .content-card {
    padding: 20px;
  }

  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
