  .meta-data-about-site {
    background: var(--background-primary);
    min-height: 100vh;
    font-family: 'Radio Canada', sans-serif;
    color: var(--text-primary);
  }

  /* ── Hero Banner ── */
  .info-hero {
    background: var(--brand-green);
    padding: 64px 24px 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .info-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='38' stroke='rgba(255,255,255,0.05)' stroke-width='1' fill='none'/%3E%3C/svg%3E") repeat;
  }
  .info-hero h1 {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    position: relative;
    letter-spacing: -0.3px;
  }
  .info-hero p {
    margin-top: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
  }
  .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    position: relative;
    font-family: 'Radio Canada', sans-serif;
  }

  /* ── Nav Pills ── */
  .section-nav {
    background: var(--background-secondary);
    border-bottom: 1px solid var(--border-primary);
    display: flex;
    justify-content: center;
    gap: 2px;
    padding: 10px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    flex-wrap: wrap;
  }
  .section-nav a {
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-tertiary);
    padding: 7px 16px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
    font-family: 'Radio Canada', sans-serif;
  }
  .section-nav a:hover {
    background: var(--background-primary);
    color: var(--brand-green);
  }

  /* ── Main Layout ── */
  .container-information {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* ── Section Card ── */
  .info-section {
    background: var(--background-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    overflow: hidden;
    animation: fadeUp 0.4s ease both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .info-section:nth-child(1) { animation-delay: 0.05s; }
  .info-section:nth-child(2) { animation-delay: 0.1s; }
  .info-section:nth-child(3) { animation-delay: 0.15s; }
  .info-section:nth-child(4) { animation-delay: 0.2s; }

  .section-header {
    padding: 24px 32px 20px;
    border-bottom: 1px solid var(--border-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--background-primary);
  }
  .section-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .section-icon svg { width: 18px; height: 18px; fill: #fff; }
  .section-header h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 700;
  }
  .section-header .updated {
    margin-left: auto;
    font-size: 0.74rem;
    color: var(--text-disable);
    white-space: nowrap;
    font-family: 'Radio Canada', sans-serif;
  }

  .section-body {
    padding: 28px 32px;
  }

  /* ── Typography inside sections ── */
  .section-body h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin: 24px 0 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
  .section-body h3:first-child { margin-top: 0; }

  .section-body p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 10px;
  }
  .section-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
  }
  .section-body ul li {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-secondary);
    padding-left: 18px;
    position: relative;
    margin-bottom: 4px;
  }
  .section-body ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--brand-green-light);
    font-weight: 600;
  }

  /* ── Info Grid (for legal notice) ── */
  .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }
  .info-cell {
    background: var(--background-primary);
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid var(--border-primary);
  }
  .info-cell .label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 3px;
    font-family: 'Radio Canada', sans-serif;
  }
  .info-cell .value {
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 500;
  }

  /* ── Highlight Box ── */
  .highlight-box {
    background: #F0FAF5;
    border-left: 3px solid var(--brand-green);
    border-radius: 6px;
    padding: 14px 18px;
    margin: 16px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
  }

  /* ── Security badges ── */
  .security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 20px;
  }
  .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--background-primary);
    border: 1px solid var(--border-secondary);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-family: 'Radio Canada', sans-serif;
  }
  .badge-dot {
    width: 7px;
    height: 7px;
    background: var(--brand-green-light);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ── Divider ── */
  .section-divider {
    border: none;
    border-top: 1px solid var(--border-primary);
    margin: 20px 0;
  }

  /* ── Footer note ── */
  .page-footer-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-tertiary);
    padding-bottom: 16px;
    font-family: 'Radio Canada', sans-serif;
  }
  .page-footer-note a {
    color: var(--brand-green);
    text-decoration: none;
  }
  .page-footer-note a:hover {
    text-decoration: underline;
  }

  @media (max-width: 600px) {
    .section-body, .section-header { padding-left: 18px; padding-right: 18px; }
    .info-grid { grid-template-columns: 1fr; }
    .section-header .updated { display: none; }
  }