:root {
  --color-navy: #2C3E50;
  --color-navy-light: #34495E;
  --color-gold: #D4AF37;
  --color-white: #FFFFFF;
  --color-off-white: #FAFAFA;
  --color-grey-100: #F5F5F5;
  --color-grey-200: #E5E5E5;
  --color-grey-400: #A0A0A0;
  --color-grey-600: #6B6B6B;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--font-sans);
  background: var(--color-white);
  color: var(--color-navy);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--color-gold); text-decoration: none; }
a:hover { text-decoration: underline; }
::selection { background: var(--color-gold); color: var(--color-navy); }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-grey-200);
}
.nav-inner {
  max-width: 800px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 56px;
}
.nav-brand { display: flex; align-items: center; gap: 8px; color: var(--color-navy); text-decoration: none; }
.nav-logo {
  width: 28px; height: 28px; border-radius: 50%;
  object-fit: cover;
}
.nav-name { font-weight: 600; font-size: 16px; }
.nav-back { font-size: 14px; color: var(--color-grey-600); text-decoration: none; }
.nav-back:hover { color: var(--color-navy); }

.container { max-width: 800px; margin: 0 auto; padding: 60px 24px 100px; }
@media (min-width: 768px) { .container { padding: 80px 48px 120px; } }

h1 { font-size: 32px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.subtitle { color: var(--color-grey-600); font-size: 14px; margin-bottom: 48px; }
h2 { font-size: 20px; font-weight: 600; margin-top: 40px; margin-bottom: 12px; letter-spacing: -0.01em; }
h2:first-of-type { margin-top: 0; }
p, li { font-size: 15px; color: var(--color-navy-light); margin-bottom: 12px; }
ul { padding-left: 20px; margin-bottom: 16px; }
li { margin-bottom: 6px; }

.contact-card {
  background: var(--color-grey-100);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 20px;
}
.contact-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.contact-card p { margin-bottom: 4px; }
.contact-card a { font-weight: 500; }

.faq-item { margin-bottom: 24px; }
.faq-item h3 {
  font-size: 16px; font-weight: 600; margin-bottom: 6px; color: var(--color-navy);
}
.faq-item p { margin-bottom: 0; }

.footer {
  border-top: 1px solid var(--color-grey-200);
  padding: 24px; text-align: center;
  font-size: 13px; color: var(--color-grey-400);
}
.footer a { color: var(--color-grey-600); }
