    :root {
      --bg: #061520;
      --ink: #E6F0F7;
      --muted: #A6B6C6;
      --card: #0B2433;
      --accent1: #F43F9A;
      --accent2: #7C3AED;
      --accent3: #24A0ED;
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body {
      background: 
        radial-gradient(1200px 600px at 80% -10%, rgba(124,58,237,.25), transparent 60%),
        radial-gradient(800px 400px at -10% 10%, rgba(244,63,154,.18), transparent 55%),
        var(--bg);
      color: var(--ink);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      line-height: 1.7;
      padding: 2rem;
      min-height: 100vh;
    }
    
    .container {
      max-width: 900px;
      margin: 0 auto;
      background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 1.5rem;
      padding: 3rem;
      box-shadow: 0 20px 60px rgba(0,0,0,.4);
      backdrop-filter: blur(10px);
    }
    
    .header {
      margin-bottom: 3rem;
      padding-bottom: 2rem;
      border-bottom: 2px solid rgba(255,255,255,.1);
    }

    .header-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
    }

    .policy-pill {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      padding: .55rem .95rem;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.1);
      background: rgba(255,255,255,.03);
      color: var(--muted);
      font-size: .85rem;
      font-weight: 600;
    }

    .header-brand {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1.25rem;
      align-items: center;
      padding: 1.4rem;
      border-radius: 1.35rem;
      border: 1px solid rgba(255,255,255,.08);
      background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
      box-shadow: 0 16px 40px rgba(0,0,0,.22);
    }

    .logo-wrap {
      width: 96px;
      height: 96px;
      display: grid;
      place-items: center;
      border-radius: 1.25rem;
      background: radial-gradient(circle at 30% 20%, rgba(124,58,237,.28), transparent 60%), rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    }
    
    .back-btn:hover {
      background: linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.04)) !important;
      border-color: rgba(255,255,255,.2) !important;
      transform: translateX(-3px);
    }
    
    .logo {
      width: 62px;
      height: 62px;
      margin: 0;
    }

    .header-copy {
      min-width: 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      padding: .4rem .8rem;
      border-radius: 999px;
      border: 1px solid rgba(124,58,237,.28);
      background: rgba(124,58,237,.12);
      color: var(--ink);
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .03em;
      text-transform: uppercase;
      margin-bottom: .9rem;
    }
    
    .header h1 {
      font-size: 2.5rem;
      font-weight: 900;
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 0.5rem;
    }
    
    .header p {
      color: var(--muted);
      font-size: 0.95rem;
      margin: 0;
      max-width: 40rem;
    }

    .header-meta {
      margin-top: 1rem;
      color: var(--muted);
      font-size: 0.9rem;
    }
    
    .intro-box {
      background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(244,63,154,.1));
      border: 1px solid rgba(124,58,237,.3);
      border-radius: 1rem;
      padding: 1.5rem;
      margin-bottom: 2rem;
    }
    
    .intro-box p {
      color: var(--muted);
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
    }
    
    .intro-box p:last-child {
      margin-bottom: 0;
    }
    
    .section {
      margin-bottom: 2.5rem;
    }
    
    .section h2 {
      font-size: 1.4rem;
      color: var(--ink);
      font-weight: 700;
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid rgba(124,58,237,.3);
    }
    
    .section h3 {
      font-size: 1.1rem;
      color: var(--accent2);
      font-weight: 700;
      margin: 1.5rem 0 0.75rem;
    }
    
    .section p {
      color: var(--muted);
      margin-bottom: 1rem;
      font-size: 0.95rem;
    }
    
    .section ul, .section ol {
      margin: 0.5rem 0 1rem 1.5rem;
      color: var(--muted);
    }
    
    .section li {
      margin-bottom: 0.5rem;
      font-size: 0.95rem;
    }
    
    .section strong {
      color: var(--ink);
    }
    
    .info-box {
      background: rgba(255,255,255,.02);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 1rem;
      padding: 1.5rem;
      margin: 1rem 0;
    }
    
    .info-box h4 {
      color: var(--ink);
      font-size: 1rem;
      margin-bottom: 0.75rem;
    }
    
    .info-box p {
      margin-bottom: 0.5rem;
    }
    
    .info-box p:last-child {
      margin-bottom: 0;
    }
    
    table {
      width: 100%;
      border-collapse: collapse;
      margin: 1.5rem 0;
      background: rgba(255,255,255,.02);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 1rem;
      overflow: hidden;
    }
    
    thead {
      background: linear-gradient(135deg, rgba(124,58,237,.2), rgba(244,63,154,.2));
    }
    
    th {
      padding: 1rem;
      text-align: left;
      font-weight: 700;
      color: var(--ink);
      font-size: 0.9rem;
    }
    
    tbody tr {
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    
    tbody tr:last-child {
      border-bottom: none;
    }
    
    td {
      padding: 1rem;
      color: var(--muted);
      font-size: 0.9rem;
      vertical-align: top;
    }
    
    td:first-child {
      color: var(--ink);
      font-weight: 600;
    }
    
    .contact-box {
      background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(244,63,154,.1));
      border: 1px solid rgba(124,58,237,.3);
      border-radius: 1rem;
      padding: 2rem;
      margin-top: 3rem;
      text-align: center;
    }
    
    .contact-box h3 {
      color: var(--ink);
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }
    
    .contact-box p {
      color: var(--muted);
      margin-bottom: 0.5rem;
    }
    
    .footer {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,.08);
      text-align: center;
      color: var(--muted);
      font-size: 0.85rem;
    }
    
    .footer p {
      margin-bottom: 0.5rem;
    }

    /* Cookie Banner Styles */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(135deg, rgba(11, 36, 51, 0.98), rgba(6, 21, 32, 0.98));
      backdrop-filter: blur(12px);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 1.5rem;
      z-index: 10000;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    }

    .cookie-banner.show {
      transform: translateY(0);
    }

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

    .cookie-text {
      flex: 1;
      min-width: 280px;
    }

    .cookie-text p {
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .cookie-text p:first-child {
      color: var(--ink);
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }

    .cookie-buttons {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .cookie-btn {
      padding: 0.75rem 1.5rem;
      border-radius: 0.7rem;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      white-space: nowrap;
    }

    .cookie-btn.accept {
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      color: white;
      box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
    }

    .cookie-btn.accept:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    }

    .cookie-btn.essential {
      background: rgba(255, 255, 255, 0.05);
      color: var(--ink);
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .cookie-btn.essential:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.25);
    }
    
    @media print {
      body {
        background: white;
        color: #000;
        padding: 0;
      }
      
      .container {
        box-shadow: none;
        border: 1px solid #ccc;
        max-width: 100%;
      }

      .cookie-banner {
        display: none;
      }
    }
    
    @media (max-width: 768px) {
      body {
        padding: 1rem;
      }
      
      .container {
        padding: 1.5rem;
      }

      .header-brand {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
      }

      .header-top {
        justify-content: center;
      }
      
      .header h1 {
        font-size: 2rem;
      }
      
      table {
        font-size: 0.85rem;
      }
      
      th, td {
        padding: 0.75rem 0.5rem;
      }

      .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
      }

      .cookie-buttons {
        width: 100%;
        justify-content: stretch;
      }

      .cookie-btn {
        flex: 1;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }
