    body {
      margin: 0;
      font-family: 'Helvetica Neue', sans-serif;
      background-color: #fff;
      color: #111;
      line-height: 1.6;
    }
    .container {
      max-width: 800px;
      margin: 60px auto;
      padding: 0 20px;
    }
    h1 {
      font-weight: 400;
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }
    h2 {
      font-weight: 400;
      font-size: 1.5rem;
      margin-top: 3rem;
      margin-bottom: 0.5rem;
    }
    .subtitle {
      font-size: 1rem;
      color: #666;
      margin-bottom: 2rem;
    }
    p {
      margin: 1rem 0;
    }
    .footer {
      text-align: center;
      font-size: 0.9rem;
      color: #888;
      margin-top: 4rem;
    }
	.footer-logo {
  max-width: 12px;
  margin: 0 auto 20px;
  display: block;
}

.footer-text p {
  margin: 0.3rem 0;
  line-height: 1.4;
}
    a.button {
      display: inline-block;
      margin-top: 2rem;
      padding: 0.6rem 1.2rem;
      background-color: #111;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
      font-size: 0.95rem;
    }
    a.button:hover {
      background-color: #333;
    }



	
	.navbar {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.nav-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0.8rem 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Helvetica Neue', sans-serif;
  flex-wrap: wrap;
}

.nav-logo img {
  height: 32px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #111;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a:hover {
  color: #555;
}

@media (max-width: 600px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }
}
/* Prevent long lines from breaking mobile layout */
p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Optional: if you want code blocks or references to scroll instead of wrap */
p {
  white-space: normal;
}

a {
  word-break: break-word;
}
body {
  padding-top: 80px;
}

.box-frame {
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #f9f9f9;
  padding: 30px;
  margin-top: 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.qa-pair {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.5rem 1rem;
  margin-bottom: 2rem;
  align-items: start;
}

.label {
  font-weight: bold;
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

input[type="text"],
textarea {
  width: 100%;
  padding: 0.6rem;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
}

textarea {
  resize: vertical;
}

form .button {
  margin-top: 1rem;
}

.nav-brand {               /* <––  SAME name as in navbar.html  */
  display: flex;           /* put logo + tagline on one row      */
  align-items: center;     /* vertically-centre them              */
  gap: 12px;               /* space between logo and tagline     */
  flex-wrap: wrap;         /* let them wrap on very small screens*/
}

/* ──────────────────────────  CLIENT TAGLINE  ── */
.tagline {
  font-size: 0.85rem;
  font-style: italic !important;
  color: #666 !important; /* dark gray */
  line-height: 1;
  align-items: center;
}
@media (max-width: 600px) {
  .tagline {            /* hide on very small screens */
    display: none !important;
  }
}

/* ───────────  LANDING-PAGE CTA BUTTONS  ─────── */
.button-row {
  margin-top: 2rem;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-button {
  display: inline-block;
  padding: 0.6rem 1.3rem;
  font-size: 0.95rem;
  color: #fff;
  background:#111;
  border-radius: 4px;
  text-decoration:none;
}
.cta-button:hover { background:#333; }

.tagline::after {
  content: "✓ loaded";
  color: green;
}

/* Responsive, clean table styles */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5em 0;
  font-family: system-ui, sans-serif;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #fff;
}

/* Header */
table thead tr {
  background-color: #f5f5f5;
}
table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: #333;
  border-bottom: 2px solid #ccc;
}

/* Body */
table tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #eee;
  color: #444;
}

/* Zebra stripes */
table tbody tr:nth-child(even) {
  background-color: #fcfcfc;
}

/* Hover effect */
table tbody tr:hover {
  background-color: #f1f7ff;
}

/* Caption (if used) */
table caption {
  caption-side: bottom;
  text-align: right;
  padding: 0.5rem;
  font-size: 0.875rem;
  color: #666;
}
img {
  max-width: 100%;   /* scale down if the image is wider than its parent */
  height: auto;      /* keep the aspect ratio */
  display: block;    /* no inline-gap under the image */
}