*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --primary: #1a6b4a; --primary-dark: #145539; --primary-light: #22865e;
      --primary-pale: #e8f5ef; --primary-mid: #c5e6d4;
      --bg: #f8faf9; --bg2: #f0f3f1; --bg3: #ffffff;
      --text: #111a15; --muted: #4a5a50; --faint: #8a9a90;
      --border: #d4ddd8; --radius: 10px; --radius-lg: 16px;
      --font: 'Inter', system-ui, sans-serif;
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; }
    a { color: var(--primary); text-decoration: none; }
    a:hover { text-decoration: underline; }
    .container { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }

    nav { position: sticky; top: 0; z-index: 100; background: rgba(248,250,249,0.95); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
    .nav-inner { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; height: 60px; display: flex; align-items: center; justify-content: space-between; }
    .nav-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 800; font-size: 1.1rem; color: var(--primary-dark); letter-spacing: -0.03em; text-decoration: none; }
    .nav-logo:hover { text-decoration: none; }
    .nav-logo i { color: var(--primary); width: 22px; height: 22px; }
    .nav-logo .accent { color: var(--primary-light); font-weight: 600; }
    .nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
    .nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--muted); }
    .nav-links a:hover { color: var(--primary); text-decoration: none; }

    .page-header { padding: 3rem 0 2rem; }
    .page-header h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 0.5rem; }

    .legal-content { padding-bottom: 3rem; }
    .legal-content h2 { font-size: 1.2rem; font-weight: 700; margin: 2rem 0 0.75rem; color: var(--text); }
    .legal-content p { font-size: 0.95rem; color: var(--muted); margin-bottom: 0.75rem; line-height: 1.7; }
    .legal-content ol { font-size: 0.95rem; color: var(--muted); margin-bottom: 0.75rem; padding-left: 1.5rem; line-height: 1.7; }
    .legal-content li { margin-bottom: 0.35rem; }

    @media (max-width: 640px) { .nav-links { display: none; } }
