:root {
  --bg: #fdfbf7;
  --surface: #ffffff;
  --surface-peach: #ffe5d9;
  --surface-blue: #eaf4f5;
  --ink: #27313a;
  --muted: #5e6971;
  --line: #e6d8d2;
  --coral: #ff70a6;
  --coral-deep: #d94f85;
  --peach: #ffb7b2;
  --navy: #263a4b;
  --teal: #2f7778;
  --shadow: 0 16px 34px rgba(39, 49, 58, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.narrow-container {
  width: min(920px, calc(100% - 40px));
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 50;
  padding: 8px 14px;
  transform: translateY(-140%);
  border-radius: 4px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(39, 49, 58, 0.09);
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.site-header[data-scrolled="true"] {
  border-bottom-color: rgba(255, 112, 166, 0.22);
  background: rgba(253, 251, 247, 0.98);
  box-shadow: 0 10px 28px rgba(39, 49, 58, 0.1);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 7px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 19px;
}

.site-nav > a:not(.button) {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #3b4850;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, text-shadow 160ms ease;
  white-space: nowrap;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 112, 166, 0.16), 0 0 12px rgba(255, 112, 166, 0.28);
  color: var(--coral-deep);
  text-shadow: 0 0 10px rgba(255, 112, 166, 0.48);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.32rem;
  line-height: 1;
}

.icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  vertical-align: -0.15em;
}

.icon--menu {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

.menu-line {
  transform-origin: 12px 12px;
  transition: transform 180ms ease, opacity 140ms ease;
}

.menu-toggle.is-open .menu-line--top {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open .menu-line--middle {
  opacity: 0;
}

.menu-toggle.is-open .menu-line--bottom {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 21px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.site-footer a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(47, 119, 120, 0.36);
  outline-offset: 3px;
}

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

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--coral-deep);
}

.button--compact {
  min-height: 39px;
  padding: 8px 14px;
  font-size: 0.88rem;
}

.site-nav .button--compact {
  background: var(--coral);
  color: #fff;
}

.site-nav .button--compact:hover,
.site-nav .button--compact:focus-visible {
  background: var(--coral-deep);
  color: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  overflow: hidden;
  background: #c7d2d5 url("img/tu3.webp") center / cover no-repeat;
}

.hero-backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(30, 43, 52, 0.58);
}

.hero-layout {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  align-items: end;
  gap: 48px;
  padding-top: 94px;
  padding-bottom: 72px;
}

.hero-copy {
  max-width: 720px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--coral-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #ffb7b2;
}

.hero .eyebrow {
  color: #ffd5e2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.24;
}

h1 {
  max-width: 720px;
  margin-bottom: 16px;
  color: #ffe5d9;
  font-size: clamp(2.65rem, 4.7vw, 4.3rem);
  text-shadow: 0 3px 18px rgba(26, 34, 42, 0.32);
}

h2 {
  margin-bottom: 18px;
  color: var(--coral-deep);
  font-size: clamp(1.75rem, 2.9vw, 2.5rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.28rem;
}

.hero-subtitle {
  max-width: 610px;
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 2.2vw, 1.3rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 0;
  min-width: 122px;
  padding: 0 23px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.hero-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts strong {
  color: #fff;
  font-size: 1.02rem;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.86rem;
}

.hero-note {
  align-self: center;
  margin-top: 64px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(253, 251, 247, 0.92);
  box-shadow: var(--shadow);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-note:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 183, 178, 0.72);
  box-shadow: 0 22px 42px rgba(39, 49, 58, 0.16);
}

.note-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--coral-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-note p {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.8;
}

.section {
  padding: 104px 0;
}

.section--peach {
  background: var(--surface-peach);
}

.section--navy {
  background: var(--navy);
}

.section--navy h2,
.section--navy h3,
.section--navy p {
  color: #fff;
}

.section--navy .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 72px;
}

.split-layout--reverse {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.04fr);
}

.split-layout--reverse .section-copy {
  order: 2;
}

.split-layout--reverse .media-frame {
  order: 1;
}

.section-copy > p {
  max-width: 690px;
  margin-bottom: 19px;
  color: var(--muted);
}

.section-copy > p:last-child {
  margin-bottom: 0;
}

.media-frame,
.wide-media,
.gallery-card {
  margin: 0;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: #e7e4e1;
  box-shadow: var(--shadow);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.media-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(39, 49, 58, 0.17);
}

.media-frame:hover img {
  transform: scale(1.035);
  filter: saturate(1.06);
}

.media-frame--portrait img {
  aspect-ratio: 16 / 11;
}

figcaption {
  padding: 13px 16px;
  background: #fff;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.content-card {
  position: relative;
  overflow: hidden;
  min-height: 224px;
  padding: 28px 26px 24px;
  border: 1px solid rgba(39, 49, 58, 0.1);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(39, 49, 58, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.content-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--teal));
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.content-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 112, 166, 0.38);
  box-shadow: 0 22px 42px rgba(39, 49, 58, 0.12);
}

.content-card:hover::before {
  opacity: 1;
}

.content-card:nth-child(2n) {
  background: var(--surface-blue);
}

.card-index {
  display: block;
  margin-bottom: 24px;
  color: var(--coral-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.content-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.wide-media {
  overflow: hidden;
  border: 1px solid rgba(39, 49, 58, 0.1);
  border-radius: var(--radius);
  background: #e7e4e1;
  box-shadow: 0 12px 28px rgba(39, 49, 58, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.wide-media img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease;
}

.wide-media:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 112, 166, 0.35);
  box-shadow: 0 22px 44px rgba(39, 49, 58, 0.14);
}

.wide-media:hover img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.guide-list {
  display: grid;
  gap: 15px;
  margin: 28px 0 0;
  padding: 0;
  counter-reset: guide-step;
  list-style: none;
}

.guide-list li {
  position: relative;
  padding-left: 48px;
  color: var(--muted);
  transition: color 160ms ease, transform 160ms ease;
}

.guide-list li:hover {
  transform: translateX(4px);
  color: var(--ink);
}

.guide-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  content: counter(guide-step);
  counter-increment: guide-step;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
}

.guide-list strong {
  color: var(--navy);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 35px;
  background: rgba(255, 255, 255, 0.22);
}

.feature-grid article {
  min-height: 216px;
  padding: 30px 26px;
  background: rgba(19, 31, 44, 0.3);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.feature-grid article:hover {
  transform: translateY(-5px);
  background: rgba(255, 112, 166, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 16px 34px rgba(11, 22, 33, 0.2);
}

.feature-grid h3 {
  color: #fff;
}

.feature-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.93rem;
  line-height: 1.74;
}

.wide-media--feature {
  border-color: rgba(255, 255, 255, 0.2);
}

.wide-media--feature figcaption {
  background: #fff;
}

.gallery-section {
  background: var(--surface-blue);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(39, 49, 58, 0.1);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.gallery-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 42px rgba(39, 49, 58, 0.15);
}

.gallery-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.06);
}

.gallery-card--cover img {
  object-position: center;
}

.update-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(39, 49, 58, 0.14);
}

.update-list li {
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(0, 1.2fr);
  gap: 30px;
  padding: 21px 8px;
  border-bottom: 1px solid rgba(39, 49, 58, 0.14);
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.update-list li:hover {
  transform: translateX(4px);
  border-bottom-color: rgba(255, 112, 166, 0.36);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: inset 3px 0 0 var(--coral);
}

.update-list strong {
  color: var(--navy);
  font-size: 0.99rem;
}

.update-list span {
  color: var(--muted);
}

.faq-section {
  background: var(--surface);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  transition: background-color 160ms ease, box-shadow 160ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  background: rgba(255, 229, 217, 0.42);
  box-shadow: inset 3px 0 0 rgba(255, 112, 166, 0.72);
}

.faq-list summary {
  position: relative;
  padding: 20px 48px 20px 0;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  transition: color 160ms ease, padding-left 160ms ease;
}

.faq-list details:hover summary,
.faq-list details[open] summary {
  color: var(--coral-deep);
  padding-left: 14px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 7px;
  color: var(--coral-deep);
  content: "+";
  font-family: Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--muted);
}

.closing-cta {
  background: var(--surface-peach);
}

.closing-cta__inner {
  display: flex;
  min-height: 244px;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.closing-cta h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
}

.friend-links {
  padding: 42px 0 46px;
  background: linear-gradient(90deg, var(--coral) 0%, #ff8dbb 48%, var(--peach) 100%);
  color: #fff;
}

.friend-links__inner {
  text-align: center;
}

.friend-links h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(1.7rem, 2.7vw, 2.25rem);
  text-shadow: 0 2px 14px rgba(112, 32, 75, 0.22);
}

.friend-links__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.friend-links__list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(130, 50, 94, 0.22);
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 22px rgba(114, 32, 76, 0.13);
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.friend-links__list a:hover,
.friend-links__list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 14px 28px rgba(114, 32, 76, 0.2);
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.87rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 13px;
  }

  .site-nav > a:not(.button) {
    font-size: 0.83rem;
  }

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

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

@media (max-width: 850px) {
  html {
    scroll-padding-top: 72px;
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    justify-content: stretch;
    justify-items: center;
    grid-template-columns: 1fr;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    box-shadow: 0 16px 30px rgba(39, 49, 58, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: center;
    justify-self: center;
    text-align: center;
    width: min(100%, 240px);
  }

  .site-nav > a:not(.button) {
    padding: 10px 12px;
    font-size: 0.96rem;
  }

  .site-nav .button {
    margin-top: 5px;
  }

  .hero,
  .hero-layout {
    min-height: 570px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 72px;
    padding-bottom: 50px;
  }

  .hero-note {
    display: none;
  }

  .split-layout,
  .split-layout--reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .split-layout--reverse .section-copy,
  .split-layout--reverse .media-frame {
    order: initial;
  }

  .section {
    padding: 74px 0;
  }

  .gallery-card img {
    height: 250px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15.5px;
  }

  .container,
  .narrow-container {
    width: min(100% - 30px, var(--container));
  }

  .brand span {
    font-size: 0.96rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero,
  .hero-layout {
    min-height: 550px;
  }

  .hero {
    background-position: 61% center;
  }

  .hero-layout {
    padding-top: 65px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    gap: 20px;
  }

  .hero-facts li,
  .hero-facts li:first-child {
    min-width: 0;
    padding: 0 16px 0 0;
    border: 0;
  }

  .content-grid,
  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .content-card {
    min-height: 0;
  }

  .wide-media img {
    aspect-ratio: 16 / 10;
  }

  .update-list li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 18px 0;
  }

  .gallery-card img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .closing-cta__inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
  }

  .closing-cta__inner .button {
    width: 100%;
  }

  .footer-inner {
    min-height: 112px;
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
