:root {
  --brand: rgb(109, 60, 94); /* #6d3c5e */
}
html,
body {
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    Helvetica, sans-serif;
  color: #222;
  background-color: #f2eef5;
}
.page-wrap {
  padding: 40px 0;
}
.policy-title {
  color: var(--brand);
  font-weight: 900;
  letter-spacing: 0.2px;
  margin-bottom: 0.5rem;
}
.last-updated {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.divider {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--brand), rgba(109, 60, 94, 0.15));
  border-radius: 999px;
  margin: 0.75rem 0 2rem;
}
a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/* Left TOC */
.toc {
  position: sticky;
  top: 150px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 16px;
  background: #faf7fa;
}
.toc h2 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--brand);
  font-weight: 800;
}
.toc ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.toc li {
  margin: 0.25rem 0;
  line-height: 1.35;
}
.toc a {
  display: block;
  padding: 0.25rem 0;
}

/* Toc Link Active */
.toc a.active {
  font-weight: bold;
  color: var(--clinic-color, #6d3c5e); /* clinic mauve */
  border-left: 3px solid var(--clinic-color, #6d3c5e);
  padding-left: 6px;
}

/* Content */
.policy h2 {
  color: var(--brand);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.2rem + 0.5vw, 1.5rem);
  text-decoration: underline;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.policy h3 {
  color: #3a3a3a;
  font-weight: 800;
  font-size: 1.05rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.policy p {
  margin-bottom: 0.8rem;
  font-family: lato;
  font-size: 1.25rem;
  font-weight: 400;
}
.policy ul {
  margin-bottom: 1rem;
}

.policy ul li {
  font-family: lato;
  font-size: 1.25rem;
}

.note-box {
  border-left: 4px solid var(--brand);
  background: #f7f1f6;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin: 1rem 0;
}
.back-top {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}
/* Small helper to visually match common “page-heading + breadcrumb gap” spacing */
.section-lead {
  margin-bottom: 0.6rem;
}

.btn-purple {
  background-color: rgb(109, 60, 94);
  border-color: rgb(109, 60, 94);
  color: #fff;
}

.btn-purple:hover,
.btn-purple:focus {
  background-color: rgb(75, 41, 65);
  border-color: rgb(75, 41, 65);
  color: #fff;
}

.purple {
  color: rgb(109, 60, 94);
}

.btn-outline-purple {
  border-color: rgb(109, 60, 94);
  color: rgb(109, 60, 94);
}

.btn-outline-purple:hover,
.btn-outline-purple:focus {
  border-color: rgb(75, 41, 65);
  color: rgb(75, 41, 65);
}
/* Breadcrumbs (scoped) */
    .disclaimer-breadcrumbs {
      background: #fff;
      border: 1px solid #eee;
      border-left: 4px solid var(--clinic-purple);
      border-radius: .5rem;
      padding: .5rem .75rem;
      margin-bottom: 1rem;
    }
    .disclaimer-breadcrumbs .breadcrumb { margin: 0; }
    .disclaimer-breadcrumbs .breadcrumb-item + .breadcrumb-item::before { color: #888; }
    .disclaimer-breadcrumbs a { color: var(--clinic-purple); text-decoration: none; }
    .disclaimer-breadcrumbs a:hover { text-decoration: underline; }

    .purple {
      color: rgb(109,60,94);
    }