/* Small custom theme on top of Bootstrap */
:root {
  --brand: #0b8f8c;
  --muted: #6c757d;
}
body {
  color: #1f2937;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}
.policy-hero {
  background: linear-gradient(
    90deg,
    rgba(11, 143, 140, 0.08),
    rgba(11, 143, 140, 0.03)
  );
  border-left: 4px solid var(--brand);
  padding: 22px;
  border-radius: 8px;
  margin-bottom: 18px;
}
h1 {
  font-size: 1.6rem;
  font-weight: 600;
}
.section-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 18px;
}
.muted {
  color: var(--muted);
}
.small-note {
  font-size: 0.9rem;
  color: #6b7280;
}
footer small {
  color: #6b7280;
}
.code-link {
  display: inline-block;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #e6eef0;
  border-radius: 6px;
  color: var(--brand);
  text-decoration: none;
  font-family: monospace;
  font-size: 0.9rem;
}
@media (min-width: 900px) {
  .container {
    justify-self: center;
    max-width: 900px;
  }
}
@media (max-width: 900px) {
  .container {
    margin: 8px;
  }
}