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

  :root {
    --navy: #03044f;
    --navy-mid: #06087a;
    --navy-light: #0a0ca3;
    --accent: #3b82f6;
    --accent-soft: #e8f0fe;
    --gold: #c9a84c;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --text: #1a1d3b;
    --text-muted: #5a5e82;
    --border: #e0e4f5;
    --section-bg: #f3f5fc;
  }

  html { scroll-behavior: smooth; }

  body {
    /*font-family: 'DM Sans', sans-serif;*/
    background: var(--off-white);
    color: var(--text);
    /*font-size: 15px;*/
    line-height: 1.75;
  }

  /* ── HEADER ── */
  header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*font-family: 'Playfair Display', serif;*/
    font-weight: 600;
    font-size: 16px;
    color: var(--navy);
  }
  .p-banner{
      background-color: #03044f;
      text-align: center;
      padding: 20px;
  }
  .logo-name {
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.02em;
  }

  .logo-name span {
    color: var(--gold);
  }

  .header-badge {
    font-size: 12px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    letter-spacing: 0.05em;
  }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a1c6e 100%);
    /*padding: 72px 2rem 80px;*/
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    /*width: 600px; height: 600px;*/
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
    top: -200px; right: -100px;
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
    bottom: -150px; left: -80px;
    pointer-events: none;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00e660;
    margin-bottom: 20px;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: #00e660;
    opacity: 0.5;
  }

  .hero h1 {
    /*font-family: 'Playfair Display', serif;*/
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto 32px;
  }

  .hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 8px 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
  }

  .hero-meta svg { opacity: 0.6; }

  /* ── LAYOUT ── */
  .layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 2rem 80px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
  }

  /* ── SIDEBAR NAV ── */
  .p-sidebar {
    position: sticky;
    top: 84px;
  }

  .p-sidebar-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
  }

  .p-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .p-nav-list a {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.15s;
    border-left: 2px solid transparent;
  }

  .p-nav-list a:hover {
    color: var(--navy);
    background: #d9ffe9;
    border-left-color: #36eb82;
  }

  /* ── CONTENT ── */
  .content { min-width: 0; }

  .section {
    margin-bottom: 48px;
    /*scroll-margin-top: 84px;*/
  }

  .section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }

  .section-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .section-icon svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .section h2 {
    /*font-family: 'Playfair Display', serif;*/
    padding: 0px !important;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy);
  }

  .section h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    margin: 20px 0 8px;
    letter-spacing: 0.01em;
  }

  .section p {
    color: var(--text);
    font-size: 14.5px;
    margin-bottom: 12px;
  }

  /* ── DEFINITION GRID ── */
  .def-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .def-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
  }

  .def-term {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 4px;
  }

  .def-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* ── DATA TYPES LIST ── */
  .data-list {
    background: var(--section-bg);
    border-radius: 10px;
    padding: 18px 20px;
    margin: 12px 0;
  }

  .data-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
  }

  .data-list li:last-child { border-bottom: none; }

  .data-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--navy);
    flex-shrink: 0;
  }

  /* ── COOKIE TABLE ── */
  .cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 13.5px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .cookie-table th {
    background: var(--navy);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .cookie-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: top;
  }

  .cookie-table tr:last-child td { border-bottom: none; }
  .cookie-table tr:nth-child(even) td { background: var(--section-bg); }

  .badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--accent-soft);
    color: var(--navy);
    border: 1px solid #c7d3f5;
  }

  /* ── PURPOSES LIST ── */
  .purpose-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
  }

  .purpose-item {
    display: flex;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
  }

  .purpose-num {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .purpose-text { font-size: 13.5px; color: var(--text); line-height: 1.6; }
  .purpose-text strong { color: var(--navy); font-weight: 500; }

  /* ── ALERT BOX ── */
  .alert {
    background: #fef9ec;
    border: 1px solid #f0d98a;
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 13.5px;
    color: #7a6020;
    margin: 16px 0;
  }

  .alert strong { color: #5a4510; }

  /* ── CONTACT BOX ── */
  .contact-box {
    background: var(--navy);
    border-radius: 14px;
    padding: 32px 36px;
    text-align: center;
    color: #fff;
  }

  .contact-box h3 {
    /*font-family: 'Playfair Display', serif;*/
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
  }

  .contact-box p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    margin-bottom: 20px;
  }

  .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 8px;
    transition: opacity 0.15s;
  }

  .contact-link:hover { opacity: 0.88; }

  /* ── FOOTER ── */
  /*footer {*/
  /*  background: var(--navy);*/
  /*  color: rgba(255,255,255,0.5);*/
  /*  text-align: center;*/
  /*  padding: 24px 2rem;*/
  /*  font-size: 13px;*/
  /*  border-top: 1px solid rgba(255,255,255,0.06);*/
  /*}*/

  /*footer a { color: rgba(255,255,255,0.7); text-decoration: none; }*/
  /*footer a:hover { color: #fff; }*/

  /* ── RESPONSIVE ── */
  /*@media (max-width: 767px) {*/
  /*  .layout { grid-template-columns: 1fr; padding: 32px 1rem 56px; }*/
  /*  .p-sidebar { display: none; }*/
  /*  .def-grid { grid-template-columns: 1fr; }*/
    /*.hero { padding: 48px 1.5rem 56px; }*/
  /*}*/