html, body { overflow-x: hidden; max-width: 100vw; }

  .legal-content h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--fg);
    border-bottom: 2px solid var(--bd);
    padding-bottom: 1rem;
  }

  .legal-content h2 {
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--fg);
    position: relative;
    padding-left: 1rem;
  }

  .legal-content h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35em;
    bottom: 0.35em;
    width: 4px;
    background: var(--ac);
    border-radius: 2px;
  }

  .legal-content p {
    line-height: 1.75;
    margin-bottom: 1.1rem;
    color: var(--fg);
    opacity: 0.92;
  }

  .legal-content ul {
    line-height: 1.8;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .legal-content ul li {
    margin-bottom: 0.5rem;
    color: var(--fg);
    opacity: 0.92;
  }

  .legal-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    padding: 1.5rem;
    background: rgba(127,127,127,0.06);
    border-left: 3px solid var(--ac);
    border-radius: var(--rad-sm);
    margin-bottom: 2rem;
  }