:root {
  --bg: #f4f1e8;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --line: rgba(31, 74, 52, 0.14);
  --text: #173528;
  --muted: #587464;
  --green: #245b3f;
  --green-soft: #dcead9;
  --sand: #e7dcc5;
  --olive: #7b9a4a;
  --terracotta: #b85f3f;
  --shadow: 0 20px 60px rgba(19, 51, 36, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(183, 214, 171, 0.65), transparent 25%),
    radial-gradient(circle at top right, rgba(232, 211, 176, 0.75), transparent 30%),
    linear-gradient(180deg, #f6f3eb 0%, #f0ede4 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 24px auto 32px;
}

.site-header,
.site-footer,
.section,
.hero {
  backdrop-filter: blur(14px);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  background: rgba(250, 247, 239, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 24px;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 0.98rem;
  line-height: 1;
}

.brand-text small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero,
.section,
.site-footer {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 20px;
  padding: 44px;
  border-radius: var(--radius-xl);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero h1,
.hero-news-title,
.section-heading h2,
.business-card h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero h1,
.hero-news-title {
  max-width: 18ch;
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
  font-weight: 800;
}

.hero-eyebrow {
  margin-bottom: 14px;
}

.hero-text,
.hero-intro,
.section-heading p,
.service-lead,
.panel p,
.download-copy p,
.business-card p,
.site-footer p,
.pricing-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions,
.service-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--green);
  color: #fff;
}

.button-secondary {
  background: #edf3ea;
  color: var(--green);
  border-color: rgba(36, 91, 63, 0.14);
}

.button-ghost {
  border-color: rgba(36, 91, 63, 0.16);
  color: var(--green);
  background: transparent;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0 0;
}

.hero-stats div {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(31, 74, 52, 0.08);
}

.hero-stats dt {
  margin-bottom: 8px;
  font-size: 1.3rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
}

.hero-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(31, 74, 52, 0.1);
  background: var(--surface-strong);
}

.hero-card-main {
  width: 100%;
  box-shadow: 0 28px 70px rgba(22, 53, 40, 0.16);
}

.hero-card-main img {
  aspect-ratio: 16 / 11;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-card-note {
  padding: 18px 20px 22px;
}

.hero-card-note span,
.tag,
.contact {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card-note strong {
  display: block;
  margin-top: 6px;
  font-size: 1.12rem;
}

.hero-card-floating {
  position: absolute;
  right: -24px;
  bottom: 30px;
  max-width: 260px;
  padding: 18px 20px;
  background: rgba(249, 245, 235, 0.94);
  box-shadow: var(--shadow);
}

.hero-card-floating p,
.pricing-panel h3,
.download-copy h3,
.service-topline h3,
.panel h3,
.mini-card h3 {
  margin: 0 0 10px;
}

.hero-card-floating ul,
.service-list,
.panel ul,
.pricing-panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.section {
  margin-top: 22px;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.alt-section {
  background:
    linear-gradient(180deg, rgba(237, 244, 233, 0.9), rgba(255, 255, 255, 0.8)),
    var(--surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.author-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.author-intro,
.author-note {
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(31, 74, 52, 0.08);
}

.author-intro {
  background: rgba(255, 255, 255, 0.72);
}

.author-intro::after {
  content: "";
  display: block;
  clear: both;
}

.author-profile {
  float: left;
  margin: 4px 18px 10px 0;
}

.author-profile img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 32%;
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(22, 53, 40, 0.14);
}

.author-intro p,
.author-note p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}

.author-note p:first-of-type {
  font-weight: 800;
  color: var(--text);
}

.author-intro p:last-child,
.author-note p:last-child {
  margin-bottom: 0;
}

.author-note {
  background: linear-gradient(180deg, rgba(237, 244, 233, 0.92), rgba(255, 255, 255, 0.86));
}

.closing-visual {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.closing-visual img {
  width: min(100%, 980px);
  border-radius: 24px;
  border: 1px solid rgba(31, 74, 52, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.closing-caption {
  max-width: 760px;
  margin: 0;
  text-align: center;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.author-note strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 12px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(36, 91, 63, 0.12);
  color: var(--green);
  font-size: 0.95rem;
}

.rules-visual {
  margin-bottom: 22px;
  display: grid;
  justify-items: center;
}

.rules-visual img {
  width: min(100%, 980px);
  border-radius: 24px;
  border: 1px solid rgba(31, 74, 52, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.rules-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.section-heading h2,
.business-card h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.organic-title {
  white-space: nowrap;
}

.rules-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
}

.rules-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.rules-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
}

.rules-pill-organic {
  background: rgba(213, 233, 196, 0.9);
  color: #315337;
}

.rules-pill-recyclable {
  background: rgba(222, 239, 233, 0.96);
  color: #2f5f58;
}

.rules-pill-residual {
  background: rgba(239, 226, 218, 0.96);
  color: #7a4e3e;
}

.flow-grid,
.service-grid,
.info-panels,
.download-grid {
  display: grid;
  gap: 18px;
}

.flow-card,
.service-card,
.panel,
.mini-card,
.pricing-panel,
.download-card,
.business-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 74, 52, 0.08);
}

.flow-card {
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.flow-badge {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.7);
}

.flow-card h3 {
  margin: 0 0 10px;
  min-height: 3.2em;
  font-size: 1.2rem;
  line-height: 1.3;
}

.flow-card p {
  margin: 0;
  color: rgba(23, 53, 40, 0.82);
  line-height: 1.65;
}

.flow-text {
  margin-bottom: 18px;
}

.flow-note {
  margin-top: auto;
  font-weight: 400;
}

.flow-note strong {
  font-weight: 800;
  color: var(--text);
}

.flow-card-organic {
  background: linear-gradient(180deg, rgba(213, 233, 196, 0.9), rgba(237, 245, 231, 0.84));
}

.flow-card-recyclable {
  background: linear-gradient(180deg, rgba(222, 239, 233, 0.96), rgba(239, 248, 244, 0.84));
}

.flow-card-residual {
  background: linear-gradient(180deg, rgba(239, 226, 218, 0.96), rgba(248, 241, 236, 0.84));
}

.service-grid {
  grid-template-columns: repeat(2, 1fr);
}

.compost-grid {
  grid-template-columns: 1fr;
}

.inorganic-service-grid {
  grid-template-columns: 1fr;
}

.organic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.subsection-heading {
  margin: 28px 0 18px;
}

.subsection-heading h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.subsection-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-card {
  overflow: hidden;
  padding: 24px;
}

.service-card.featured {
  background: linear-gradient(180deg, rgba(236, 244, 234, 0.95), rgba(255, 255, 255, 0.9));
}

.service-showcase {
  padding: 0;
  background: linear-gradient(180deg, rgba(253, 253, 249, 0.98), rgba(245, 248, 241, 0.96));
}

.service-showcase-head {
  position: relative;
  padding: 28px 28px 26px;
  background: linear-gradient(135deg, #86ad92 0%, #92b79c 100%);
  color: #f7fbf8;
}

.service-showcase-head::before,
.service-showcase-head::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(232, 244, 230, 0.18);
}

.service-showcase-head::before {
  top: -18px;
  right: -6px;
  width: 122px;
  height: 122px;
}

.service-showcase-head::after {
  right: 44px;
  bottom: -42px;
  width: 88px;
  height: 88px;
}

.service-showcase-head-alt {
  background: linear-gradient(135deg, #7fa897 0%, #8ab3a1 100%);
}

.service-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(250, 252, 249, 0.28);
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-showcase-head h3 {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.service-facts {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.service-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(247, 251, 248, 0.98);
  font-size: 0.92rem;
  font-weight: 700;
}

.service-showcase-body {
  padding: 22px 28px 28px;
}

.service-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-link-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  background: #edf5e8;
  color: #5f836d;
  font-size: 0.78rem;
  font-weight: 700;
}

.service-summary-box,
.service-region-box {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(202, 222, 204, 0.85);
  background: linear-gradient(180deg, rgba(250, 251, 246, 0.98), rgba(246, 248, 242, 0.98));
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

.service-media-box {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(202, 222, 204, 0.85);
  background: rgba(250, 251, 247, 0.92);
}

.service-media-box img {
  display: block;
  width: 100%;
  height: auto;
}

.service-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
  align-items: start;
  margin-top: 18px;
}

.service-media-box-compact {
  margin-top: 0;
}

.service-side-stack > * {
  margin-top: 0;
}

.service-side-stack > * + * {
  margin-top: 18px;
}

.service-table {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(202, 222, 204, 0.85);
  background: rgba(252, 253, 250, 0.98);
}

.service-table-head,
.service-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 16px 18px;
  font-size: 0.8rem;
}

.service-table-head span,
.service-table-row span,
.service-table-row strong,
.service-table-row p {
  white-space: nowrap;
  margin: 0;
}

.service-table-head {
  background: #7f9f88;
  color: #f6fbf7;
  font-weight: 700;
}

.service-table-row {
  align-items: center;
  border-top: 1px solid rgba(210, 227, 212, 0.9);
  color: var(--muted);
  background: rgba(250, 251, 247, 0.82);
}

.service-table-row strong {
  color: #456654;
  font-size: 0.86rem;
}

.service-topline h3 {
  margin: 0;
}

.service-subline {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 700;
}

.service-list {
  margin-bottom: 22px;
}

.service-list-plain {
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.service-list-plain li + li {
  margin-top: 8px;
}

.service-docs {
  margin: 18px 0 22px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(202, 222, 204, 0.85);
  background: rgba(248, 250, 245, 0.92);
}

.service-docs-title {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.service-docs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-docs-actions .button {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.84rem;
}

.service-doc-button::before {
  content: "↓";
  margin-right: 8px;
  font-weight: 800;
}

.contact {
  align-self: center;
}

.info-panels {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
}

.panel,
.mini-card,
.pricing-panel {
  padding: 22px;
}

.waste-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
}

.waste-visual {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.waste-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.waste-content {
  display: grid;
  gap: 18px;
}

.waste-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.table-wrap {
  overflow: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 74, 52, 0.08);
  background: rgba(255, 255, 255, 0.74);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(31, 74, 52, 0.08);
}

thead th {
  background: rgba(232, 240, 229, 0.92);
  color: var(--green);
  font-size: 0.95rem;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.download-grid {
  grid-template-columns: repeat(2, 1fr);
}

.download-card {
  display: grid;
  overflow: hidden;
}

.download-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.download-copy,
.download-actions {
  padding: 0 22px 22px;
}

.download-copy {
  padding-top: 20px;
}

.download-card.wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  background:
    radial-gradient(circle at left center, rgba(183, 214, 171, 0.35), transparent 35%),
    rgba(255, 255, 255, 0.76);
}

.download-card.wide .download-copy,
.download-card.wide .download-actions {
  padding: 0;
}

.business-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(36, 91, 63, 0.95), rgba(83, 126, 81, 0.95)),
    var(--green);
  color: #fff;
}

.business-card .eyebrow,
.business-card p,
.business-card .business-contacts p {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  margin-top: 22px;
  padding: 24px 28px;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1100px) {
  .hero,
  .author-card,
  .waste-layout,
  .business-card {
    grid-template-columns: 1fr;
  }

  .hero-card-floating {
    position: static;
    max-width: none;
    margin-top: 18px;
  }

  .flow-grid,
  .waste-cards {
    grid-template-columns: 1fr;
  }

  .author-profile {
    float: none;
    margin: 0 0 16px;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
    margin-top: 12px;
  }

  .site-header {
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(250, 247, 239, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .site-header.menu-open .nav-toggle span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero,
  .section {
    padding: 24px;
  }

  .hero-stats,
  .service-grid,
  .info-panels,
  .download-grid,
  .service-split {
    grid-template-columns: 1fr;
  }


  .download-card.wide {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-showcase-head,
  .service-showcase-body {
    padding-left: 22px;
    padding-right: 22px;
  }

  .service-table-head,
  .service-table-row {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  html,
  body {
    overflow-x: hidden;
  }

  .hero h1 {
    max-width: none;
    font-size: 2.65rem;
  }

  .hero h3 {
    max-width: none;
    font-size: 1.52rem;
    line-height: 1.14;
  }

  .organic-title {
    white-space: normal;
  }

  .rules-pill {
    max-width: 100%;
  }

  .service-kicker {
    min-height: auto;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 0.66rem;
    line-height: 1.35;
    white-space: normal;
  }

  .service-showcase-head h3 {
    font-size: 1.72rem;
  }

  .service-facts span {
    min-height: 34px;
    font-size: 0.86rem;
  }

  .service-quicklinks {
    gap: 10px;
  }

  .service-link-pill {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .service-summary-box,
  .service-region-box {
    padding: 15px 16px;
    font-size: 0.84rem;
  }

  .service-table-head,
  .service-table-row {
    padding: 14px 16px;
    font-size: 0.74rem;
  }

  .service-table-head span,
  .service-table-row span,
  .service-table-row strong,
  .service-table-row p {
    white-space: nowrap;
  }

  .service-table-row strong {
    font-size: 0.8rem;
  }

  .service-docs-actions {
    gap: 12px;
  }

  .service-docs-actions .button {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
  }

  .service-docs-title {
    font-size: 0.9rem;
  }

  .closing-caption {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .author-note strong {
    font-size: 0.84rem;
  }

  .author-note p {
    font-size: 0.86rem;
    line-height: 1.62;
  }

  .author-note p:first-of-type {
    font-size: 0.92rem;
  }

  .hero-actions,
  .download-actions,
  .service-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  th,
  td {
    padding: 16px;
  }
}
