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

  :root {
    --sky-top:    #b8d8f8;
    --sky-mid:    #ddeeff;
    --sky-bottom: #f0f7ff;
    --water:      #5ba3d9;
    --water-deep: #2d6fa3;
    --sand:       #e8d9c0;
    --text:       #1a2a3a;
    --text-soft:  #4a6278;
    --accent:     #2e7bbf;
    --accent-light: #5ba3d9;
    --card-bg:    rgba(255,255,255,0.72);
    --divider:    rgba(91,163,217,0.18);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Rubik', sans-serif;
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    background: #b8d8f8;
  }

  /* ─── Background (same as hero) ─── */
  .bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(180deg,
        var(--sky-top) 0%,
        var(--sky-mid) 38%,
        var(--sky-bottom) 60%,
        #d4eaf8 72%,
        var(--water) 82%,
        var(--water-deep) 100%
      );
  }

  /* Clouds */
  .bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 220px 60px at 12% 18%, rgba(255,255,255,0.62) 0%, transparent 100%),
      radial-gradient(ellipse 140px 38px at 22% 14%, rgba(255,255,255,0.45) 0%, transparent 100%),
      radial-gradient(ellipse 320px 70px at 78% 10%, rgba(255,255,255,0.55) 0%, transparent 100%),
      radial-gradient(ellipse 180px 45px at 90% 18%, rgba(255,255,255,0.38) 0%, transparent 100%),
      radial-gradient(ellipse 260px 55px at 50% 6%, rgba(255,255,255,0.40) 0%, transparent 100%);
    pointer-events: none;
  }

  /* Sun glow */
  .bg::after {
    content: '';
    position: absolute;
    top: -80px; right: 8%;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,230,150,0.32) 0%, transparent 70%);
    pointer-events: none;
  }

  /* ─── Layout ─── */
  .page {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: 56px 24px 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  /* ─── Header ─── */
  .policy-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .policy-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 14px;
  }

  .policy-header h1 span {
    color: var(--accent);
  }

  .meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-soft);
    font-weight: 400;
  }
  .meta-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--accent-light);
    opacity: 0.6;
  }

  /* ─── Card ─── */
  .policy-card {
    background: var(--card-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.82);
    border-radius: 24px;
    box-shadow:
      0 4px 24px rgba(40,80,120,0.10),
      0 1px 3px rgba(40,80,120,0.06),
      inset 0 1px 0 rgba(255,255,255,0.9);
    overflow: hidden;
    flex: 1;
  }

  /* ─── Content ─── */
  .policy-body {
    padding: 40px 36px 44px;
  }

  .policy-section {
    margin-bottom: 44px;
  }
  .policy-section:last-child { margin-bottom: 0; }

  .section-number {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(91,163,217,0.12);
    border-radius: 4px;
    padding: 2px 8px;
    margin-bottom: 10px;
  }

  .policy-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(91,163,217,0.18) 0%, rgba(45,111,163,0.18) 100%);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .section-icon svg {
    width: 18px; height: 18px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .policy-section p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-soft);
    font-weight: 400;
    margin-bottom: 12px;
  }
  .policy-section p:last-child { margin-bottom: 0; }

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

  /* Info box */
  .info-box {
    background: rgba(91,163,217,0.10);
    border: 1px solid rgba(91,163,217,0.22);
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    padding: 14px 18px;
    margin: 16px 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-soft);
  }
  .info-box strong { color: var(--accent); }

  /* Data table */
  .data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.88rem;
  }
  .data-table th {
    text-align: left;
    font-weight: 600;
    color: var(--text);
    padding: 10px 14px;
    background: rgba(91,163,217,0.10);
    border-bottom: 1px solid var(--divider);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .data-table th:first-child { border-radius: 8px 0 0 0; }
  .data-table th:last-child  { border-radius: 0 8px 0 0; }
  .data-table td {
    padding: 10px 14px;
    color: var(--text-soft);
    border-bottom: 1px solid var(--divider);
    vertical-align: top;
    line-height: 1.55;
  }
  .data-table tr:last-child td { border-bottom: none; }
  .data-table tr:nth-child(even) td { background: rgba(91,163,217,0.04); }

  /* Tag badges */
  .tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
  }
  .tag-blue   { background: rgba(91,163,217,0.15); color: var(--accent); }
  .tag-green  { background: rgba(60,180,120,0.14); color: #2a7a56; }
  .tag-orange { background: rgba(240,160,60,0.14); color: #8a5a10; }

  /* Divider */
  .section-divider {
    height: 1px;
    background: var(--divider);
    margin: 40px 0;
  }

  /* Contact box */
  .contact-box {
    background: linear-gradient(135deg, rgba(91,163,217,0.12) 0%, rgba(45,111,163,0.08) 100%);
    border: 1px solid rgba(91,163,217,0.25);
    border-radius: 14px;
    padding: 24px 28px;
    margin-top: 16px;
  }
  .contact-box p { margin-bottom: 8px; }
  .contact-box a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
  }
  .contact-box a:hover { text-decoration: underline; }

  /* ─── Footer ─── */
  footer {
    margin-top: 40px;
    text-align: center;
  }
  .footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text);
  }
  .footer-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--accent); }
  .sep {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--sky-bottom);
    opacity: 0.4;
  }

  /* ─── Responsive ─── */
  @media (max-width: 600px) {
    .page { padding: 36px 14px 60px; }
    .policy-body { padding: 28px 20px 32px; }
    .toc { padding: 20px; }
    .toc-grid { grid-template-columns: 1fr; }
    .data-table { font-size: 0.8rem; }
    .data-table th, .data-table td { padding: 8px 10px; }
  }

  /* ─── Scroll animation ─── */
  .policy-section {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.55s ease forwards;
  }
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  .policy-section:nth-child(1)  { animation-delay: 0.05s; }
  .policy-section:nth-child(2)  { animation-delay: 0.10s; }
  .policy-section:nth-child(3)  { animation-delay: 0.15s; }
  .policy-section:nth-child(4)  { animation-delay: 0.20s; }
  .policy-section:nth-child(5)  { animation-delay: 0.25s; }
  .policy-section:nth-child(6)  { animation-delay: 0.30s; }
  .policy-section:nth-child(7)  { animation-delay: 0.35s; }
  .policy-section:nth-child(8)  { animation-delay: 0.40s; }
  .policy-section:nth-child(9)  { animation-delay: 0.45s; }
  .policy-section:nth-child(10) { animation-delay: 0.50s; }