:root {
    --navy: #1B2A4A;
    --red: #C8202F;
    --white: #FFFFFF;
    --offwhite: #F5F4F0;
    --text-dark: #1a1a2e;
    --text-mid: #444;
    --border: rgba(27,42,74,0.12);
    --light: #F9F8F5;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Barlow', sans-serif; color: var(--text-dark); background: var(--offwhite); }

  /* NAV */
  nav {
    background: var(--navy);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; height: 64px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }
  .nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; color: var(--white); letter-spacing: 2px; text-decoration: none; }
  .nav-logo span { color: var(--red); }
  .nav-back {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.75); text-decoration: none;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-back:hover { color: white; }
  .nav-back svg { width: 14px; height: 14px; }

  /* HERO BAND */
  .page-hero {
    background: var(--navy); padding: 60px 40px 52px;
    border-bottom: 3px solid var(--red);
  }
  .page-hero-inner { max-width: 860px; margin: 0 auto; }
  .page-eyebrow {
    font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase; color: var(--red);
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
  }
  .page-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); }
  .page-hero h1 {
    font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 5vw, 4rem);
    color: white; letter-spacing: 2px; line-height: 1; margin-bottom: 16px;
  }
  .page-hero p { font-size: 0.95rem; color: rgba(255,255,255,0.62); line-height: 1.6; }

  /* LAYOUT */
  .page-body { max-width: 860px; margin: 0 auto; padding: 64px 40px 100px; }

  /* TOC */
  .toc {
    background: var(--white); border-radius: 8px; padding: 28px 32px;
    border-left: 4px solid var(--navy); margin-bottom: 52px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.06);
  }
  .toc h2 {
    font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; color: var(--navy); margin-bottom: 16px;
  }
  .toc ol { list-style: decimal; padding-left: 20px; columns: 2; gap: 8px; }
  .toc li { margin-bottom: 8px; }
  .toc a { color: var(--navy); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
  .toc a:hover { color: var(--red); }

  /* SECTIONS */
  .policy-section { margin-bottom: 52px; }
  .policy-section:last-child { margin-bottom: 0; }

  .section-anchor { display: block; height: 80px; margin-top: -80px; visibility: hidden; }

  .policy-section h2 {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--navy);
    letter-spacing: 1px; margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    display: flex; align-items: center; gap: 12px;
  }
  .section-num {
    background: var(--red); color: white;
    font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; letter-spacing: 1px;
    padding: 3px 9px; border-radius: 3px; flex-shrink: 0;
  }

  .policy-section p { font-size: 0.97rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 16px; }
  .policy-section p:last-child { margin-bottom: 0; }
  .policy-section strong { color: var(--navy); font-weight: 700; }

  /* Tables */
  .policy-table {
    width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.9rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06); border-radius: 6px; overflow: hidden;
  }
  .policy-table thead { background: var(--navy); color: white; }
  .policy-table thead th {
    padding: 14px 18px; text-align: left;
    font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem;
    font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  }
  .policy-table tbody tr { border-bottom: 1px solid var(--border); background: white; }
  .policy-table tbody tr:last-child { border-bottom: none; }
  .policy-table tbody tr:nth-child(even) { background: var(--light); }
  .policy-table td { padding: 13px 18px; color: var(--text-mid); vertical-align: top; line-height: 1.6; }
  .policy-table td:first-child { font-weight: 600; color: var(--navy); white-space: nowrap; }

  /* Rights callout box */
  .rights-box {
    background: var(--navy); border-radius: 8px; padding: 32px 36px; margin: 24px 0;
    color: white;
  }
  .rights-box h3 {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 1px;
    color: white; margin-bottom: 20px;
  }
  .rights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .right-item {
    background: rgba(255,255,255,0.07); border-radius: 6px; padding: 16px 18px;
    border-left: 3px solid var(--red);
  }
  .right-item strong { display: block; font-size: 0.9rem; color: white; margin-bottom: 4px; }
  .right-item span { font-size: 0.83rem; color: rgba(255,255,255,0.68); line-height: 1.5; display: block; }

  /* Do Not Sell highlight */
  .dns-box {
    background: #fff8f8; border: 2px solid var(--red); border-radius: 8px;
    padding: 24px 28px; margin: 24px 0;
  }
  .dns-box h3 {
    font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 10px;
  }
  .dns-box p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

  /* Contact block */
  .contact-block {
    background: var(--white); border-radius: 8px; padding: 28px 32px;
    border-left: 4px solid var(--red); box-shadow: 0 3px 16px rgba(0,0,0,0.06);
    margin-top: 20px;
  }
  .contact-block p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.75; margin: 0; }
  .contact-block strong { color: var(--navy); }

  /* Footer */
  footer {
    background: var(--text-dark); color: rgba(255,255,255,0.5);
    padding: 28px 40px; display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px; font-size: 0.8rem; line-height: 1.7;
  }
  footer strong { color: rgba(255,255,255,0.8); }
  .fppc-disclaimer { font-size: 14pt; font-weight: 700; font-family: 'Barlow', sans-serif; color: rgba(255,255,255,0.8); }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: rgba(255,255,255,0.82); }

  @media (max-width: 720px) {
    nav { padding: 0 20px; }
    .page-hero { padding: 40px 24px; }
    .page-body { padding: 40px 24px 70px; }
    .toc ol { columns: 1; }
    .rights-grid { grid-template-columns: 1fr; }
    .policy-table td:first-child { white-space: normal; }
    footer { flex-direction: column; padding: 24px; }
  }

  /* COOKIE CONSENT BANNER */
  .cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--navy); border-top: 2px solid var(--red);
    padding: 18px 32px; display: flex; align-items: center; justify-content: center;
    gap: 20px; flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
    animation: cookieSlideUp 0.4s ease both;
  }
  .cookie-banner.hidden { display: none; }
  .cookie-banner p {
    font-family: 'Barlow', sans-serif; font-size: 0.9rem; color: rgba(255,255,255,0.85);
    margin: 0; line-height: 1.5;
  }
  .cookie-banner a { color: var(--red); text-decoration: underline; }
  .cookie-banner a:hover { color: var(--white); }
  .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
  .cookie-btn {
    font-family: 'Barlow', sans-serif; font-size: 0.82rem; font-weight: 600;
    padding: 8px 22px; border-radius: 4px; cursor: pointer;
    text-transform: uppercase; letter-spacing: 1px; transition: all 0.2s;
    border: none;
  }
  .cookie-btn-accept { background: var(--red); color: var(--white); }
  .cookie-btn-accept:hover { background: #a01a25; }
  .cookie-btn-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }
  .cookie-btn-decline:hover { color: var(--white); border-color: var(--white); }
  @keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  @media (max-width: 580px) {
    .cookie-banner { padding: 16px 20px; flex-direction: column; text-align: center; gap: 14px; }
    .cookie-banner p { font-size: 0.82rem; }
  }
