@font-face {
  font-family: Manrope;
  src: url("/assets/fonts/manrope.ttf") format("truetype");
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --pearl: #eceef0;
  --ink: #162233;
  --muted: #536175;
  --slate: #27384d;
  --line: #d5d9df;
  --shadow: 0 8px 28px #16223314;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
body {
  margin: 0;
  background: var(--pearl);
  color: var(--ink);
  font:
    400 17px/1.65 Manrope,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
a,
button,
summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
img,
svg {
  display: block;
  max-width: 100%;
}
:focus-visible {
  outline: 3px solid #3974a7;
  outline-offset: 5px;
}
.hero-product :focus-visible,
.reports-section :focus-visible {
  outline-color: #cfdae8;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
h2 {
  font-size: clamp(34px, 4.6vw, 58px);
}
h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
}
p {
  color: var(--muted);
}
ul,
ol {
  padding-left: 23px;
}
li + li {
  margin-top: 8px;
}
.wrap {
  width: min(1120px, calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--ink);
  color: white;
  padding: 14px 20px;
  z-index: 30;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: relative;
  z-index: 10;
  background: var(--pearl);
}
.nav-shell {
  width: min(1280px, calc(100% - 96px));
  margin: auto;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wordmark {
  text-decoration: none;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.2;
  white-space: nowrap;
}
#site-navigation {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 650;
}
#site-navigation > a {
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
#site-navigation a:hover,
.footer-top a:hover,
.topic-navigation a:hover {
  color: #356584;
}
.nav-cta {
  border: 1px solid #b8c0ca;
  border-radius: 8px;
  padding: 9px 17px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  min-height: 44px;
  padding: 10px 0;
  gap: 12px;
  align-items: center;
}
.language-menu {
  position: relative;
}
.language-menu summary {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  cursor: pointer;
  list-style: none;
}
.language-menu summary::-webkit-details-marker {
  display: none;
}
.language-options {
  position: absolute;
  right: 0;
  top: 100%;
  display: grid;
  min-width: 155px;
  padding: 8px;
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.language-options a {
  padding: 9px 13px;
  text-decoration: none;
  min-height: 44px;
}
.language-options a[aria-current] {
  background: var(--pearl);
  border-radius: 4px;
}
.hero {
  text-align: center;
  overflow: hidden;
}
.hero-copy {
  padding: 40px 24px 42px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(90px, 12vw, 164px);
  font-weight: 800;
  letter-spacing: -0.067em;
  line-height: 1;
}
.hero-tagline {
  font-size: clamp(22px, 2.9vw, 32px);
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 20px auto 26px;
  max-width: 650px;
  font-weight: 500;
  line-height: 1.3;
}
.store-options {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.store-badge {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 155px;
  min-height: 64px;
  line-height: 1.25;
  padding: 10px 22px;
  box-shadow: 0 4px 9px #1622331a;
}
.store-badge > span {
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}
.store-badge small {
  color: #c4d0df;
  font-size: 11px;
  margin-top: 4px;
  font-weight: 500;
}
.availability {
  font-size: 12px;
  line-height: 1.55;
  margin: 14px auto 0;
  max-width: 310px;
}
.hero-product {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 24px 33px;
}
.hero-product:before {
  content: "";
  position: absolute;
  inset: 180px 0 0;
  background: var(--slate);
}
.hero-product .phone {
  width: 340px;
  box-shadow: 0 30px 64px #0004;
  animation: arrive 0.7s ease-out both;
}
.phone {
  display: block;
  width: 306px;
  max-width: 100%;
  border-radius: 34px;
  border: 4px solid #263341;
  padding: 3px;
  background: #fff;
  position: relative;
  text-decoration: none;
  box-shadow:
    0 14px 28px #16223324,
    0 2px 4px #16223314;
  overflow: hidden;
  isolation: isolate;
}
.phone img {
  width: 100%;
  height: auto;
  border-radius: 26px;
  background: #fff;
}
.expand-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  line-height: 1.4;
  background: #fff;
  color: var(--ink);
  padding: 6px 12px;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.18s;
}
.phone:hover .expand-label,
.phone:focus-visible .expand-label {
  opacity: 1;
}
.screen-caption {
  position: relative;
  color: #c6d2df;
  font-size: 11px;
  margin-top: 24px;
}
.introduction {
  padding: 112px 0 70px;
  text-align: center;
}
.introduction h2 {
  max-width: 780px;
  margin: auto;
  font-size: clamp(34px, 4.7vw, 56px);
}
.introduction p {
  max-width: 610px;
  margin: 26px auto 0;
  font-size: 19px;
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 78px 0;
}
.feature-reverse .feature-copy {
  order: 2;
}
.feature-reverse .screen-stage {
  order: 1;
}
.feature-copy h2 {
  margin-bottom: 27px;
}
.feature-copy > p {
  max-width: 500px;
}
.feature-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
  max-width: 460px;
}
.feature-points li {
  position: relative;
  padding: 14px 0 14px 22px;
  margin: 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.5;
}
.feature-points li:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #627485;
  left: 0;
  top: 22px;
  border-radius: 50%;
}
.screen-stage {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: #e3e6e9;
  border-radius: 12px;
}
.feature-note {
  font-size: 12px;
  line-height: 1.6;
  margin-top: 22px;
  max-width: 430px;
}
.document-section {
  background: #fafbfc;
  margin: 45px 0;
}
.document-section .screen-stage {
  background: var(--pearl);
}
.screen-switcher {
  display: none;
  align-items: stretch;
  padding: 4px;
  border: 1px solid #d0d6dc;
  background: #f7f8f9;
  border-radius: 9px;
  gap: 4px;
  max-width: 100%;
  margin: 0 auto 24px;
}
.screenshot-links {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 14px;
}
.gallery-enhanced .screen-switcher {
  display: flex;
}
.screen-switcher button {
  font-size: 13px;
  font-weight: 650;
  min-height: 42px;
  padding: 7px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  line-height: 1.35;
}
.screen-switcher button[aria-pressed="true"] {
  background: #fff;
  border-color: #d5d9df;
  box-shadow: 0 2px 4px #16223310;
}
.reports-section {
  background: var(--slate);
  color: #f7faff;
  margin-top: 50px;
}
.reports-section p {
  color: #c5d0df;
}
.reports-section .screen-stage {
  background: #34475b;
}
.reports-section .feature-points,
.reports-section .feature-points li {
  border-color: #526275;
}
.reports-section .feature-points li:before {
  background: #c5d0df;
}
.payment-example {
  margin-top: 30px;
  background: #f8fafc;
  color: var(--ink);
  padding: 24px;
  border-radius: 10px;
}
.payment-example h3 {
  font-size: 17px;
  margin-bottom: 18px;
}
.payment-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-bottom: 1px solid #d5d9df;
  padding: 10px 0;
}
.payment-row span {
  color: var(--muted);
  font-size: 12px;
}
.payment-row strong {
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.payment-example p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  margin-top: 13px;
}
.theme-section {
  padding-block: 110px 95px;
  text-align: center;
}
.theme-copy p {
  max-width: 520px;
  margin: 24px auto 28px;
}
.theme-gallery {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.theme-gallery .phone {
  width: 324px;
}
.source-note {
  font-size: 11px;
  line-height: 1.7;
  max-width: 570px;
  margin: 28px auto 0;
}
.faq-section {
  padding-block: 45px 100px;
  max-width: 900px;
}
.faq-section h2 {
  margin-bottom: 42px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details > summary {
  list-style: none;
  cursor: pointer;
}
details > summary::-webkit-details-marker {
  display: none;
}
.faq-list details,
.help-group details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary,
.help-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.5;
}
.summary-mark {
  font-size: 26px;
  font-weight: 400;
  flex: 0 0 24px;
  text-align: center;
  transition: transform 0.2s;
}
details[open] > summary > .summary-mark {
  transform: rotate(45deg);
}
.answer {
  padding: 0 40px 25px 0;
  font-size: 15px;
  color: var(--muted);
}
.answer p + p {
  margin-top: 12px;
}
.answer ol {
  margin: 15px 0 0;
}
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  font-weight: 650;
  margin-top: 23px;
  text-decoration: none;
  min-height: 44px;
  max-width: 100%;
}
.text-link:hover {
  text-decoration: underline;
}
.download-section {
  background: #dfe5e8;
  padding: 94px 24px;
  text-align: center;
}
.download-section > .wrap {
  width: min(750px, 100%);
}
.download-section h2 {
  font-size: clamp(36px, 5vw, 64px);
}
.download-section p:not(.availability) {
  margin: 24px auto 30px;
  max-width: 530px;
}
.site-footer {
  padding: 65px max(48px, calc((100% - 1120px) / 2)) 26px;
  background: #f8f9fa;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 48px;
}
.footer-top p {
  font-size: 13px;
  margin-top: 14px;
}
.footer-top nav {
  display: flex;
  gap: 27px;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 550;
}
.footer-top nav a {
  padding-block: 10px;
  text-decoration: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
  font-size: 11px;
}
.page-heading {
  padding-top: 65px;
  padding-bottom: 66px;
}
.page-heading h1 {
  font-size: clamp(40px, 5.8vw, 72px);
  max-width: 950px;
}
.page-heading > p {
  max-width: 650px;
  font-size: 19px;
  margin-top: 25px;
}
.page-heading .updated {
  font-size: 12px;
  margin-top: 22px;
}
.help-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 64px;
  padding-bottom: 100px;
  align-items: start;
}
.topic-navigation {
  position: sticky;
  top: 30px;
}
.topic-navigation h2 {
  font-size: 15px;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
}
.topic-navigation nav {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.5;
}
.topic-navigation a {
  display: block;
  padding: 9px 0;
  text-decoration: none;
}
.help-group {
  scroll-margin-top: 35px;
  margin-bottom: 50px;
}
.help-group h2,
.policy h2,
.privacy-request h2,
.contact-panel h2 {
  font-size: 27px;
  line-height: 1.3;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.help-group details:first-of-type {
  border-top: 1px solid var(--line);
}
.help-group summary {
  font-size: 16px;
}
.version-note {
  font-size: 13px;
  line-height: 1.6;
  border-left: 2px solid #7a8b9f;
  padding-left: 18px;
  margin-bottom: 44px;
}
.contact-panel {
  padding: 32px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid #e0e3e6;
  border-radius: 12px;
}
.contact-address {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: clamp(18px, 2.7vw, 26px);
  font-weight: 650;
  text-decoration: none;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}
.contact-panel p {
  font-size: 14px;
  margin-top: 20px;
}
.contact-panel .small-copy {
  font-size: 12px;
}
.privacy-request {
  margin-top: 55px;
}
.privacy-request p {
  font-size: 15px;
}
.privacy-request .text-link {
  display: flex;
  width: fit-content;
}
.policy {
  font-size: 15px;
  line-height: 1.8;
}
.policy-intro {
  padding: 25px 28px;
  background: #f9fafb;
  border-left: 3px solid #7a8b9f;
  margin-bottom: 45px;
}
.policy p + p {
  margin-top: 15px;
}
.policy section {
  margin-bottom: 38px;
  scroll-margin-top: 35px;
}
.policy section:last-child {
  margin-bottom: 0;
}
.policy ul {
  color: var(--muted);
}
.policy-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.policy-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  min-height: 44px;
}
.screen-dialog {
  border: 0;
  border-radius: 18px;
  background: #e6eaee;
  padding: 52px 10px 10px;
  max-width: min(460px, calc(100vw - 24px));
  max-height: 90dvh;
  box-shadow: 0 20px 90px #0005;
}
.screen-dialog::backdrop {
  background: #101a29c9;
}
.screen-dialog > img {
  height: auto;
  max-width: 100%;
  border-radius: 8px;
}
.dialog-close {
  position: absolute;
  top: 5px;
  right: 10px;
  border: 0;
  background: #e6eaee;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 700;
}
.dialog-close span {
  font-size: 26px;
}
.dialog-open {
  overflow: hidden;
}
@keyframes arrive {
  from {
    opacity: 0.5;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1100px) {
  .payment-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .feature {
    gap: 100px;
  }
}
@media (max-width: 900px) {
  .wrap,
  .nav-shell {
    width: calc(100% - 64px);
  }
  #site-navigation {
    gap: 20px;
  }
  .feature {
    gap: 36px;
  }
  .feature-copy h2 {
    font-size: 40px;
  }
  .screen-stage {
    padding: 22px;
  }
  .help-layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 32px;
  }
  .site-footer {
    padding-inline: 32px;
  }
  .footer-top nav {
    gap: 18px;
  }
}
@media (max-width: 680px) {
  html {
    scroll-padding-top: 28px;
  }
  body {
    font-size: 16px;
  }
  .wrap,
  .nav-shell {
    width: calc(100% - 44px);
  }
  .nav-shell {
    min-height: 76px;
    flex-wrap: wrap;
    gap: 0;
  }
  .wordmark {
    font-size: 25px;
  }
  .menu-toggle {
    display: none;
    font-size: 12px;
  }
  #site-navigation {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 8px 0 22px;
    gap: 14px 24px;
    border-top: 1px solid var(--line);
  }
  .has-navigation-js .menu-toggle {
    display: flex;
  }
  .has-navigation-js #site-navigation {
    display: none;
  }
  .has-navigation-js.menu-open #site-navigation {
    display: flex;
  }
  .language-options {
    right: auto;
    left: 0;
    z-index: 2;
  }
  .nav-cta {
    margin-left: auto;
    font-size: 12px;
  }
  .hero-copy {
    padding: 31px 22px 32px;
  }
  .hero h1 {
    font-size: 88px;
  }
  .hero-tagline {
    font-size: 23px;
    max-width: 325px;
    margin: 17px auto 23px;
  }
  .store-options {
    gap: 10px;
  }
  .store-badge {
    min-width: 137px;
    min-height: 59px;
    padding: 9px 15px;
  }
  .store-badge > span {
    font-size: 15px;
  }
  .availability {
    font-size: 11px;
    margin-top: 13px;
  }
  .hero-product {
    padding: 0 32px 27px;
  }
  .hero-product .phone {
    width: 310px;
  }
  .hero-product:before {
    top: 145px;
  }
  .phone {
    border-width: 3px;
    padding: 3px;
    border-radius: 30px;
    width: 288px;
  }
  .phone img {
    border-radius: 23px;
  }
  .screen-caption {
    font-size: 10px;
    max-width: 260px;
    line-height: 1.6;
    margin-top: 22px;
  }
  .introduction {
    padding: 67px 0 24px;
  }
  .introduction h2 {
    font-size: 33px;
  }
  .introduction p {
    font-size: 16px;
    margin-top: 22px;
  }
  .feature {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 45px 0;
  }
  .feature-copy h2 {
    font-size: 35px;
    margin-bottom: 20px;
  }
  .feature-copy h2 br {
    display: none;
  }
  .feature-copy p {
    font-size: 16px;
  }
  .feature-points {
    margin-top: 22px;
  }
  .feature-points li {
    font-size: 13px;
    padding-block: 12px;
  }
  .feature-points li:before {
    top: 19px;
  }
  .feature-reverse .feature-copy,
  .feature-reverse .screen-stage {
    order: initial;
  }
  .screen-stage {
    padding: 25px 20px;
  }
  .document-section {
    margin: 12px 0;
  }
  .screen-switcher button {
    padding-inline: 16px;
    font-size: 12px;
  }
  .feature-copy .feature-note {
    font-size: 12px;
  }
  .reports-section {
    margin-top: 18px;
  }
  .reports-section .feature {
    padding-block: 55px;
  }
  .payment-example {
    padding: 22px;
    margin-top: 25px;
  }
  .payment-row {
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
  }
  .payment-row strong {
    font-size: 14px;
  }
  .payment-row span {
    font-size: 11px;
  }
  .theme-section {
    padding-block: 62px;
  }
  .theme-section h2 {
    font-size: 36px;
  }
  .theme-copy p {
    font-size: 16px;
    margin-top: 22px;
  }
  .theme-gallery .phone {
    width: 294px;
  }
  .source-note {
    font-size: 10px;
    margin-top: 25px;
  }
  .faq-section {
    padding: 20px 0 65px;
  }
  .faq-section h2 {
    font-size: 33px;
    margin-bottom: 27px;
  }
  .faq-list summary {
    font-size: 15px;
    padding-block: 19px;
  }
  .answer {
    font-size: 14px;
    padding-right: 15px;
  }
  .download-section {
    padding: 62px 22px;
  }
  .download-section h2 {
    font-size: 35px;
  }
  .download-section p:not(.availability) {
    font-size: 15px;
    margin: 22px 0 26px;
  }
  .site-footer {
    padding: 42px 22px 25px;
  }
  .footer-top {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 30px;
  }
  .footer-top nav {
    gap: 10px 22px;
    font-size: 12px;
  }
  .footer-top nav a:last-child {
    flex-basis: 100%;
    padding-top: 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    font-size: 10px;
    padding-top: 19px;
  }
  .page-heading {
    padding-top: 37px;
    padding-bottom: 38px;
  }
  .page-heading h1 {
    font-size: 40px;
  }
  .page-heading > p {
    font-size: 16px;
    margin-top: 22px;
  }
  .page-heading .updated {
    font-size: 11px;
  }
  .help-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 60px;
  }
  .topic-navigation {
    position: static;
    border-block: 1px solid var(--line);
    padding: 20px 0;
  }
  .topic-navigation nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    font-size: 12px;
  }
  .topic-navigation h2 {
    font-size: 14px;
  }
  .version-note {
    font-size: 12px;
    margin-bottom: 34px;
  }
  .help-group {
    margin-bottom: 36px;
  }
  .help-group h2,
  .policy h2,
  .contact-panel h2,
  .privacy-request h2 {
    font-size: 24px;
  }
  .help-group summary {
    font-size: 15px;
    padding-block: 19px;
  }
  .contact-panel {
    padding: 24px 21px;
  }
  .contact-address {
    font-size: 22px;
    gap: 10px;
  }
  .contact-panel p {
    font-size: 13px;
  }
  .privacy-request p,
  .policy {
    font-size: 14px;
  }
  .policy-intro {
    padding: 20px;
    margin-bottom: 30px;
  }
  .policy section {
    margin-bottom: 30px;
  }
}
@media (max-width: 360px) {
  .wrap,
  .nav-shell {
    width: calc(100% - 36px);
  }
  .hero h1 {
    font-size: 77px;
  }
  .hero-tagline {
    font-size: 21px;
  }
  .store-badge {
    min-width: 128px;
    padding-inline: 12px;
  }
  .hero-product {
    padding-inline: 30px;
  }
  .feature-copy h2 {
    font-size: 32px;
  }
  .screen-stage {
    padding: 22px 17px;
  }
  .payment-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .contact-address {
    font-size: 19px;
  }
  .page-heading h1 {
    font-size: 35px;
  }
  .topic-navigation nav {
    gap: 0 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
