  .kf-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
  }
  .kf-checklist li {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 0.6rem;
    line-height: 1.45;
  }
  .kf-icon {
    color: #16a34a; /* green-600; tweak to match brand */
    display: inline-flex;
    margin-top: 0.15rem;
  }
  .kf-text {
    color: inherit;
    font-size: 1rem;
  }

  /* Improve contrast on muted/body text */
  .text-muted { color: #374151 !important; }
  .text-body  { color: #374151 !important; }

  /* Bump lead text weight so lighter colors remain readable */
  .lead { font-weight: 400; }

  /* Optional: dark mode-friendly tint if you use prefers-color-scheme */
  @media (prefers-color-scheme: dark) {
    .kf-icon { color: #22c55e; } /* green-500 */
  }