*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: sans-serif;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
#root, #app {
  isolation: isolate;
}
.skip-link {
  position: absolute !important;
  height: 1px; 
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; /* added line */
}
.skip-link:focus {
  top: 0;
}

:root {
      --bg: #fff;
      --fg: #000;
      --font: system-ui, sans-serif;
      --mono: ui-monospace, SFMono-Regular, monospace;
    }

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

    html {
      font-size: clamp(16px, 2vw, 20px);
    }

    body {
      background-color: var(--bg);
      color: var(--fg);
      font-family: var(--font);
      line-height: 1.75;
      padding: 2rem 1rem;
    }

    header, footer {
      text-align: center;
      padding: 2rem 1rem;
      border-top: 2px solid var(--fg);
      border-bottom: 2px solid var(--fg);
    }

    header h1 {
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    header p {
      font-size: clamp(1rem, 2vw, 1.25rem);
      margin-top: 0.5rem;
    }

    .print-button {
        background: #fff;
        color: #000;
        border: 2px solid #000;
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        font-family: inherit;
        text-transform: uppercase;
        margin-top: 1rem;
    }

    .print-button:hover,
    .print-button:focus {
        background: #000;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        outline: none;
    }



    main {
      max-width: 960px;
      margin: 3rem auto;
    }

    section {
      margin-bottom: 3rem;
    }

    h2 {
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      border-bottom: 1px solid var(--fg);
      padding-bottom: 0.5rem;
      margin-bottom: 1.25rem;
      text-transform: uppercase;
    }

    dl {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 1rem;
    }

    dt {
      font-weight: bold;
      font-size: 1.1em;
      margin-top: 0.5rem;
    }

    dd {
      margin: 0;
      font-family: var(--mono);
      font-size: 1em;
      background: var(--bg);
      border: 1px solid var(--fg);
      padding: 0.75rem;
      white-space: pre-wrap;
      word-break: break-word;
    }

    footer {
      font-size: 0.95rem;
      margin-top: 4rem;
      margin-bottom: 1rem;

    }

    @media (max-width: 700px) {
        dl {
            grid-template-columns: 1fr;
        }

        body {
            padding: 1rem;
        }

        dd {
            font-size: 1rem;
        }

        dt {
            font-size: 1rem;
        }
    }

    @media print {
        header, footer nav {
            display: none !important;
        }

        body {
            padding: 0;
        }

        section {
            page-break-inside: avoid;
        }

        #print-date {
            display: block !important;
            text-align: right;
            font-size: 0.9rem;
            margin: 2rem;
        }
    }
