:root {
  --ink: #2c2419;
  --muted: #6b635a;
  --paper: #fdfbf7;
  --cream: #faf6f0;
  --accent: #e85d2c;
  --accent-soft: #ff6b35;
  --accent-light: #fff0e8;
  --line: #e8e0d4;
  --teal: #3d8b7a;
}

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

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--paper);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 107, 53, 0.07), transparent),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  min-height: 100vh;
  color: var(--ink);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 20px 64px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav .brand {
  font-family: Georgia, "Times New Roman", "Palatino Linotype", serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent);
  text-decoration: none;
}

.site-nav .brand:hover {
  text-decoration: none;
}

.site-nav .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  list-style: none;
  justify-content: center;
}

.site-nav .nav-links a {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.site-nav .nav-links a:hover,
.site-nav .nav-links a.active {
  color: var(--accent);
  text-decoration: none;
}

.page-header {
  text-align: center;
  margin-bottom: 32px;
  padding-top: 24px;
}

.page-header h1 {
  font-family: Georgia, "Times New Roman", "Palatino Linotype", serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.page-header .subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 1px 2px rgba(44, 36, 25, 0.04), 0 8px 24px rgba(44, 36, 25, 0.05);
  margin-bottom: 20px;
}

.content-card h2 {
  font-family: Georgia, "Times New Roman", "Palatino Linotype", serif;
  font-size: 1.35rem;
  color: var(--ink);
  margin: 28px 0 12px;
}

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

.content-card h3 {
  font-size: 1.05rem;
  color: var(--ink);
  margin: 20px 0 8px;
}

.content-card p,
.content-card li {
  color: var(--muted);
  margin-bottom: 12px;
}

.content-card ul,
.content-card ol {
  padding-left: 1.4rem;
  margin-bottom: 16px;
}

.content-card li {
  margin-bottom: 8px;
}

.content-card .updated {
  font-size: 0.85rem;
  color: #a39a90;
  margin-bottom: 20px;
}

.section-block {
  margin-top: 40px;
}

.section-block h2 {
  font-family: Georgia, "Times New Roman", "Palatino Linotype", serif;
  font-size: 1.5rem;
  text-align: center;
  color: var(--ink);
  margin-bottom: 24px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}

.faq-item h3 {
  font-size: 0.98rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

.guide-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.guide-links a {
  display: block;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-weight: 500;
}

.guide-links a:hover {
  border-color: var(--accent-soft);
  background: var(--accent-light);
  text-decoration: none;
}

.cta-box {
  text-align: center;
  margin-top: 32px;
  padding: 28px;
  background: var(--accent-light);
  border: 1px solid rgba(232, 93, 44, 0.15);
  border-radius: 16px;
}

.cta-box p {
  color: var(--muted);
  margin-bottom: 14px;
}

.btn-cta {
  display: inline-block;
  padding: 13px 28px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border-radius: 12px;
  text-decoration: none;
}

.btn-cta:hover {
  background: #d45428;
  text-decoration: none;
}

.site-footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #a39a90;
  font-size: 0.82rem;
}

.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 10px;
}

.site-footer .footer-links a {
  color: var(--muted);
  font-weight: 500;
}

.site-footer .footer-links a:hover {
  color: var(--accent);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 24px rgba(44, 36, 25, 0.08);
  padding: 16px 20px;
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cookie-inner p {
  flex: 1;
  min-width: 240px;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.btn-accept {
  padding: 10px 22px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.btn-accept:hover {
  background: #d45428;
}

@media (max-width: 700px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 1.85rem;
  }
}
