body {
  background: #f7faf7;
  color: #16211f;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

.admin-note {
  align-items: center;
  background: #16211f;
  color: white;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
  min-height: 4rem;
  padding: 0.75rem 1rem;
}

.admin-note strong {
  font-size: 1.1rem;
}

.admin-note span {
  color: #dff0ea;
  font-size: 0.95rem;
  flex: 1 1 18rem;
}

.admin-note a,
.help-back {
  background: #dff0ea;
  border-radius: 0.55rem;
  color: #0f533f;
  display: inline-flex;
  font-weight: 800;
  min-height: 2.5rem;
  padding: 0.6rem 0.85rem;
  text-decoration: none;
}

.help-page {
  background: #f7faf7;
}

.help-header,
.help-content {
  margin-inline: auto;
  max-width: 68rem;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.help-header {
  display: grid;
  gap: 1.25rem;
  padding-block: clamp(1.25rem, 4vw, 3rem) 1rem;
}

.help-back {
  justify-self: start;
}

.help-kicker {
  color: #197058;
  font-weight: 800;
  margin: 0 0 0.4rem;
}

.help-header h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}

.help-header p:last-child {
  color: #5d6a67;
  font-size: 1.1rem;
  margin: 0.75rem 0 0;
}

.help-content {
  display: grid;
  gap: 1rem;
  padding-block: 1rem clamp(2rem, 5vw, 4rem);
}

.help-content section {
  background: white;
  border: 1px solid #d9e3de;
  border-radius: 0.8rem;
  box-shadow: 0 10px 32px rgb(24 35 47 / 0.06);
  padding: clamp(1rem, 3vw, 1.6rem);
}

.help-content h2,
.help-content h3 {
  line-height: 1.2;
}

.help-content h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  margin: 0 0 0.85rem;
}

.help-content h3 {
  font-size: 1.1rem;
  margin: 1rem 0 0.25rem;
}

.help-content p,
.help-content li {
  color: #465552;
  font-size: 1rem;
  line-height: 1.7;
}

.help-content ol,
.help-content ul {
  padding-inline-start: 1.4rem;
}

.help-content details {
  border-top: 1px solid #d9e3de;
  padding-block: 0.8rem;
}

.help-content details:first-of-type {
  border-top: 0;
}

.help-content summary {
  color: #16211f;
  cursor: pointer;
  font-weight: 800;
}

@media (max-width: 640px) {
  .admin-note {
    align-items: start;
    display: grid;
  }
}

@media print {
  .admin-note,
  .help-back {
    display: none;
  }

  body,
  .help-page {
    background: white;
  }

  .help-header,
  .help-content {
    max-width: none;
    padding: 0;
  }

  .help-content section {
    border: 0;
    box-shadow: none;
    break-inside: avoid;
    padding: 0 0 1rem;
  }
}
