/* legal.css — Legal pages-specific styles */
/* Extracted from inline <style> to improve caching and maintainability */

:root {
      --blue: #003366;
      --blue-dark: #002244;
      --yellow: #F3C13A;
      --bg: #FFFFFF;
      --text: #222222;
      --text-muted: rgba(34,34,34,0.6);
    }

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

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
      line-height: 1.7;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1.5rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
    }

    .nav-logo {
      height: 32px;
      width: auto;
    }

    .nav-back {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.875rem;
      transition: color 0.2s;
    }

    .nav-back:hover {
      color: var(--text);
    }

    .container {
      max-width: 800px;
      margin: 0 auto;
      padding: 8rem 2rem 4rem;
    }

    h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 2rem;
      color: var(--text);
    }

    h2 {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--yellow);
      margin-top: 2.5rem;
      margin-bottom: 1rem;
    }

    p {
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    strong {
      color: var(--text);
      font-weight: 600;
    }

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

    a:hover {
      text-decoration: underline;
    }

    .legal-section {
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .legal-section:last-child {
      border-bottom: none;
    }

    .footer {
      padding: 2rem;
      border-top: 1px solid rgba(0,0,0,0.1);
      text-align: center;
    }

    .footer-legal {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    @media (max-width: 768px) {
      .nav {
        padding: 1rem 1.5rem;
      }
      .nav-logo {
        height: 26px;
      }
      .container {
        padding: 6rem 1.5rem 3rem;
      }
      h1 {
        font-size: 2rem;
      }
    }

    .lang-switch { font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; }
    .lang-switch a { color: var(--text-muted); text-decoration: none; }
    .lang-switch a:hover { color: var(--text); }
    .lang-switch strong { color: var(--text); }
