.doc-page {
      max-width: 780px;
      margin: 0 auto;
      padding: 8rem 2.5rem 6rem;
    }

    .doc-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.8rem;
    }

    .doc-title {
      font-family: 'Instrument Serif', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 0.6rem;
    }

    .doc-date {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 3rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--border);
    }

    .doc-section {
      margin-bottom: 2.5rem;
    }

    .doc-section h2 {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 0.8rem;
      padding-top: 0.5rem;
    }

    .doc-section h3 {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--dark);
      margin-bottom: 0.5rem;
      margin-top: 1.2rem;
    }

    .doc-section p {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 0.8rem;
    }

    .doc-section ul {
      list-style: none;
      padding: 0;
      margin: 0 0 0.8rem 0;
    }

    .doc-section ul li {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.8;
      padding-left: 1.2rem;
      position: relative;
    }

    .doc-section ul li::before {
      content: '·';
      position: absolute;
      left: 0;
      color: var(--orange);
      font-weight: 600;
    }

    .doc-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 2rem 0;
    }

    @media (max-width: 768px) {
      .doc-page { padding: 7rem 1.5rem 4rem; }
    }