@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
:root {
  --background-dark: #54565a;
  --primary-text: #222;
  --text-dark: #222;
  --text-default: #464646;
  --secondary: #8cb6e1;
  --tertiary: #f0cd15;
  --isi-color: #000000;
  --line-height-base: 24px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-default, #464646);
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  body {
    padding-top: 84px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 1rem 0;
}

a {
  color: var(--text-dark, #222);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

sup {
  font-size: 14px;
  font-weight: 400;
  vertical-align: super;
  line-height: 0;
  position: relative;
  top: 0.2em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn:hover {
  text-decoration: none;
}
.btn--primary {
  background-color: #007bff;
  color: white;
}
.btn--primary:hover {
  background-color: #0056b3;
}
.btn--secondary {
  background-color: #8cb6e1;
  color: #343a40;
}
.btn--secondary:hover {
  background-color: #7aa3c7;
}

.savings-card-btn {
  display: flex;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: var(--secondary, #8cb6e1);
  color: var(--primary-text, #222);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: var(--line-height-base, 24px);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}
.savings-card-btn:hover {
  background-color: #7aa3c7;
  text-decoration: none;
  color: var(--primary-text, #222);
}

.faqs-section {
  padding: 64px 0;
}
@media (max-width: 768px) {
  .faqs-section {
    padding: 40px 0;
  }
}

.faqs-header {
  margin-bottom: 8px;
}

.faqs-search-container {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  max-width: 800px;
}
@media (max-width: 992px) {
  .faqs-search-container {
    flex-direction: column;
    gap: 16px;
  }
}

.search-input-wrapper {
  position: relative;
  flex: 1;
  max-width: 480px;
}
@media (max-width: 992px) {
  .search-input-wrapper {
    max-width: none;
    width: 100%;
  }
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  pointer-events: none;
}

.faq-search-input {
  width: 100%;
  height: 48px;
  padding: 12px 48px 12px 48px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  line-height: 24px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-search-input:focus {
  outline: none;
  border-color: #8cb6e1;
  box-shadow: 0 0 0 3px rgba(140, 182, 225, 0.1);
}
.faq-search-input::placeholder {
  color: #6b7280;
}

.clear-search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  color: #6b7280;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}
.clear-search-btn:hover {
  background-color: #f3f4f6;
}
.clear-search-btn.visible {
  display: flex;
}

.faqs-controls {
  display: flex;
  gap: 8px;
}
@media (max-width: 992px) {
  .faqs-controls {
    width: 100%;
  }
}

.faq-control-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 11px 20px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  color: var(--dark-color, #222);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.faq-control-btn:hover {
  border-color: #8cb6e1;
  background-color: #f8fafc;
}
.faq-control-btn:active {
  transform: translateY(1px);
}
@media (max-width: 992px) {
  .faq-control-btn {
    flex: 1;
    justify-content: center;
  }
}

.faqs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.faq-item.hidden {
  display: none;
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  cursor: pointer;
  transition: padding-bottom 0.5s ease;
}
.faq-question:hover h3 {
  color: var(--text-default, #464646);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.faq-question:focus {
  outline: none;
  background-color: #f3f4f6;
}
.faq-question h3 {
  color: var(--primary-text, #222);
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
  flex: 1;
  padding-right: 16px;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .faq-question h3 {
    font-size: 16px;
    line-height: 24px;
  }
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 16px;
  transition: background-color 0.2s ease;
}
.faq-toggle:hover {
  background-color: #f3f4f6;
}

.faq-icon {
  transition: transform 0.3s ease;
  background: var(--secondary, #8cb6e1);
  border-radius: 16px;
  padding: 4px;
  transition: all 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: rgba(0, 0, 0, 0.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0;
}
.faq-answer p {
  color: var(--text-default, #464646);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  padding-bottom: 16px;
}
@media (max-width: 768px) {
  .faq-answer p {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 20px;
  }
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding: 0 0 16px 0;
}

.faq-item.is-open .faq-question {
  padding-bottom: 16px;
}

.faq-question[aria-expanded=true] .faq-icon {
  transform: rotate(45deg);
}

.faq-question:focus-visible {
  outline: 2px solid #8cb6e1;
  outline-offset: 2px;
}

.search-highlight {
  background-color: rgba(140, 182, 225, 0.5);
  padding: 2px 0;
  border-radius: 4px;
  font-weight: 500;
}

.faq-link {
  color: var(--primary-text, #222);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: all 0.3s ease;
}
.faq-link:hover {
  color: var(--text-default, #464646);
  text-decoration-thickness: 2px;
}
.faq-link:focus {
  outline: 2px solid var(--secondary, #8cb6e1);
  outline-offset: 2px;
  border-radius: 2px;
}

.faqs-disclaimer {
  padding-top: 32px;
}
.faqs-disclaimer p {
  color: var(--text-default, #464646);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
}

.footer {
  background: var(--background-dark, #54565a);
  color: #fff;
  padding: 64px 0;
  flex-shrink: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  align-items: start;
}

.footer__column--product {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__logo a {
  display: block;
  text-decoration: none;
}
.footer__logo img {
  width: 166px;
  height: 90px;
  display: block;
}

.footer__trademark {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}

.footer__copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  margin: 0;
}

.footer__column--nav,
.footer__column--support {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer__link:hover {
  opacity: 0.8;
  text-decoration: none;
  color: #ffffff;
}

.footer__dropdown {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__dropdown-title {
  cursor: default;
  pointer-events: none;
  position: relative;
  transition: all 0.3s ease;
}
.footer__dropdown-title::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #ffffff;
  opacity: 0;
  transition: all 0.3s ease;
}
.footer__dropdown-title:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(4px);
}

.footer__dropdown-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 16px;
}

.footer__dropdown-link {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  position: relative;
  transition: all 0.3s ease;
}
.footer__dropdown-link::before {
  content: "→";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 12px;
}

.footer__dropdown:hover .footer__dropdown-link::before {
  opacity: 1;
  animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowMove {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(2px);
  }
}
.footer__column--brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__collegium-logo a {
  display: block;
  text-decoration: none;
  padding-bottom: 8px;
}
.footer__collegium-logo img {
  width: 182px;
  height: 51px;
  display: block;
}

.footer__brand-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__product-id,
.footer__website,
.footer__phone {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}

@media (max-width: 1200px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .footer__column--product {
    grid-column: 1/-1;
  }
}
@media (max-width: 992px) {
  .footer {
    padding: 48px 0;
  }
  .footer__grid {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 32px 0;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer__column--product {
    grid-column: 1;
  }
}
.header {
  position: relative;
  width: 100%;
  height: 122px;
  box-shadow: 0px 24px 60px 0px rgba(0, 0, 0, 0.05), 0px 16px 32px 0px rgba(0, 0, 0, 0.04), 0px 12px 16px 0px rgba(0, 0, 0, 0.02);
  z-index: 1000;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .header.header--hidden {
    transform: translateY(-100%);
  }
}

.header__top-nav {
  height: 60px;
  background: var(--background-dark, #54565a);
  width: 100%;
  display: flex;
  align-items: center;
}

.header__top-nav-content {
  max-width: 1320px;
  position: relative;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__logo-wrapper {
  background: #ffffff;
  padding: 16px 24px;
  height: 122px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 24px;
  z-index: 10;
}

.header__logo {
  display: block;
  text-decoration: none;
}
.header__logo img {
  width: 166px;
  height: 90px;
  display: block;
}

.header__top-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: 32px;
  padding-left: 240px;
}

.header__top-nav-link {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.header__top-nav-link:hover {
  opacity: 0.8;
  text-decoration: none;
  color: #fff;
}

.header__main-nav {
  height: 62px;
  background: #ffffff;
  width: 100%;
  display: flex;
  align-items: center;
}

.header__main-nav-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__main-nav-links {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding-left: 240px;
  height: 100%;
}

.header__main-nav-link {
  color: var(--text-dark, #222);
  font-size: 16px;
  font-weight: 600;
  line-height: var(--line-height-base, 24px);
  text-decoration: none;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 4px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.header__main-nav-link:hover {
  border-bottom: 4px solid var(--secondary, #8cb6e1);
  text-decoration: none;
}
.header__main-nav-link.active {
  border-bottom: 4px solid var(--secondary, #8cb6e1);
}

.header__main-nav-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.header__main-nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark, #222);
  font-size: 16px;
  font-weight: 600;
  line-height: var(--line-height-base, 24px);
  text-decoration: none;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 4px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  gap: 8px;
}
.header__main-nav-dropdown-toggle:hover {
  border-bottom: 4px solid var(--secondary, #8cb6e1);
  text-decoration: none;
}

.header__main-nav-dropdown-icon {
  transition: transform 0.2s ease;
}

.header__main-nav-dropdown:hover .header__main-nav-dropdown-icon,
.header__main-nav-dropdown.is-active .header__main-nav-dropdown-icon {
  transform: rotate(180deg);
}

.header__main-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(140, 182, 225, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1001;
  height: 50px;
  display: flex;
  align-items: center;
}

.header__main-nav-dropdown-background {
  position: fixed;
  top: 122px;
  left: 0;
  right: 0;
  height: 50px;
  background: #ffffff;
  border-top: 1px solid rgba(140, 182, 225, 0.3);
  box-shadow: 0 24px 30px 0 rgba(0, 0, 0, 0.05), 0 16px 24px 0 rgba(0, 0, 0, 0.04), 0 12px 16px 0 rgba(0, 0, 0, 0.02);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.header__main-nav-dropdown:hover .header__main-nav-dropdown-background,
.header__main-nav-dropdown.is-active .header__main-nav-dropdown-background {
  opacity: 1;
  visibility: visible;
}

body.scrolled .header__main-nav-dropdown-background,
body.scrolled .header__main-nav-dropdown:hover .header__main-nav-dropdown-background,
body.scrolled .header__main-nav-dropdown.is-active .header__main-nav-dropdown-background {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: none !important;
}

.header__main-nav-dropdown:hover .header__main-nav-dropdown-menu,
.header__main-nav-dropdown.is-active .header__main-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__main-nav-dropdown-links {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 32px;
  align-items: center;
  height: 100%;
}

.header__main-nav-dropdown-link {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 4px;
  color: var(--text-dark, #222);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-bottom-color 0.2s ease;
  border-bottom: 4px solid transparent;
  white-space: nowrap;
}
.header__main-nav-dropdown-link:hover {
  background-color: rgba(140, 182, 225, 0.05);
  border-bottom: 4px solid var(--secondary, #8cb6e1);
  text-decoration: none;
  color: var(--text-dark, #222);
}
.header__main-nav-dropdown-link.active {
  border-bottom: 4px solid var(--secondary, #8cb6e1);
}

.mobile-nav__dropdown {
  position: relative;
}

.mobile-nav__dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark, #222);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.15s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  width: 100%;
  text-align: left;
}
.mobile-nav__dropdown-toggle:hover {
  background-color: #f8f9fa;
  text-decoration: none;
  color: var(--text-dark, #222);
}

.mobile-nav__dropdown-icon {
  transition: transform 0.2s ease;
  transform: rotate(-90deg);
}

.mobile-nav__dropdown.is-open .mobile-nav__dropdown-icon {
  transform: rotate(0deg);
}

.mobile-nav__dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.mobile-nav__dropdown.is-open .mobile-nav__dropdown-menu {
  max-height: 200px;
  opacity: 1;
}

.mobile-nav__dropdown-menu .mobile-nav__link {
  padding-left: 2.5rem;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--text-dark, #222);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  transition: color 0.2s ease;
}

.mobile-nav-toggle__icon {
  transition: transform 0.3s ease;
}

.mobile-nav-toggle__line {
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-nav-toggle.is-active {
  text-transform: lowercase;
}
.mobile-nav-toggle.is-active .mobile-nav-toggle__text::before {
  content: "Close ";
  text-transform: capitalize;
}
.mobile-nav-toggle.is-active .mobile-nav-toggle__line--top {
  transform: rotate(45deg) translate(0px, 6px);
}
.mobile-nav-toggle.is-active .mobile-nav-toggle__line--middle {
  opacity: 0;
  transform: scale(0);
}
.mobile-nav-toggle.is-active .mobile-nav-toggle__line--bottom {
  transform: rotate(-45deg) translate(0px, -6px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__content {
  background: #ffffff;
  height: 100%;
  overflow-y: auto;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.2s ease;
}
.mobile-nav.is-open .mobile-nav__content {
  transform: translateX(0);
  z-index: 1001;
}

.mobile-nav__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  color: var(--text-dark, #222);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  transition: background-color 0.15s ease;
  position: relative;
}
.mobile-nav__link:hover {
  background-color: #f8f9fa;
  text-decoration: none;
  color: var(--text-dark, #222);
}
.mobile-nav__link.mobile-nav__link--active {
  background: linear-gradient(90deg, rgba(140, 182, 225, 0.1) 0%, rgba(140, 182, 225, 0) 42.67%);
}
.mobile-nav__link.mobile-nav__link--active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #8cb6e1;
}

.mobile-nav__chevron {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.mobile-nav__link:hover .mobile-nav__chevron {
  opacity: 1;
}

.mobile-nav__divider {
  height: 1px;
  background: rgba(34, 34, 34, 0.16);
  margin: 0;
}

@media (max-width: 992px) {
  .header__top-nav-links {
    display: none;
  }
  .header__main-nav-links {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  .mobile-nav {
    display: block;
  }
  .savings-card-btn {
    font-size: 12px;
    line-height: 20px;
    padding: 4px 8px;
  }
}
@media (max-width: 992px) {
  .header {
    height: 84px;
    display: flex;
    flex-direction: column;
  }
  .header__logo-wrapper {
    height: 84px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 16px;
  }
  .header__logo img {
    width: 96px;
    height: 52px;
  }
  .header__top-nav {
    height: auto;
    order: 2;
  }
  .header__main-nav {
    height: 40px;
    padding: 12px 0;
    order: 1;
  }
  .header__main-nav-content {
    padding-inline: 16px;
  }
  .header__top-nav-content {
    height: 44px;
    position: static;
    padding-inline: 16px;
  }
  .header__top-nav-links,
  .header__main-nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.hero-banner {
  height: 363px;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-color: rgba(84, 86, 90, 0);
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: inset 0 -16px 0 0 var(--tertiary, #f0cd15);
  overflow: hidden;
  background-image: var(--hero-bg-image);
}
@media (min-width: 768px) {
  .hero-banner {
    animation: heroBackgroundFadeIn 1.5s ease-out;
  }
}
.hero-banner .container {
  height: 100%;
}
@media (min-width: 1930px) {
  .hero-banner {
    background-size: contain;
  }
}
@media (max-width: 992px) {
  .hero-banner {
    background-image: var(--hero-bg-mobile);
  }
}
@media (max-width: 768px) {
  .hero-banner {
    background-image: none;
    box-shadow: none;
    overflow: visible;
  }
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  gap: 2rem;
}
@media (min-width: 768px) {
  .hero-content {
    animation: heroContentFadeIn 1s ease-out forwards;
    will-change: opacity;
  }
}
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    border-bottom: 8px solid var(--tertiary, #f0cd15);
  }
}

.hero-left {
  display: flex;
  width: 612px;
  padding: 0px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex-shrink: 0;
  align-self: stretch;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 100%), rgba(140, 182, 225, 0.95);
}
.hero-left h1 {
  color: var(--text-dark, #222);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
@media (min-width: 768px) {
  .hero-left h1 {
    animation: heroTitleSlideUp 0.8s ease-out 0.2s both;
    will-change: transform, opacity;
  }
}
.hero-left h1 sup {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  position: relative;
  top: 0;
  vertical-align: super;
}
.hero-left h1 span {
  font-weight: 400;
}
@media (max-width: 992px) {
  .hero-left h1 {
    font-size: 26px;
    line-height: 36px;
  }
}
@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 26px;
    line-height: 36px;
  }
}
.hero-left p {
  color: var(--text-dark, #222);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}
@media (min-width: 768px) {
  .hero-left p {
    animation: heroDescriptionSlideUp 0.8s ease-out 0.4s both;
    will-change: transform, opacity;
  }
}
@media (max-width: 992px) {
  .hero-left p {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 768px) {
  .hero-left p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 992px) {
  .hero-left {
    width: 100%;
    padding: 0px 24px;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero-left {
    padding: 0px 16px;
  }
}

.hero-right {
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .hero-right {
    animation: heroButtonSlideUp 0.8s ease-out 0.6s both;
    will-change: transform, opacity;
  }
}
.hero-right .btn {
  font-size: 1.125rem;
  padding: 1rem 2rem;
}
@media (max-width: 992px) {
  .hero-right .btn {
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
  }
}

@keyframes heroContentFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes heroTitleSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroDescriptionSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroButtonSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroBackgroundFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .hero-banner {
    height: auto;
    display: block;
    background-image: none !important;
  }
  .hero-banner .container {
    height: auto;
    padding: 0;
  }
  .hero-banner .hero-content {
    flex-direction: column;
    height: auto;
    gap: 0;
  }
  .hero-banner .hero-left {
    width: 100%;
    padding: 32px 16px;
    height: auto;
    text-align: left;
    min-height: auto;
  }
  .hero-banner .hero-right {
    display: none;
  }
  .hero-banner::after {
    content: "";
    display: block;
    width: 100%;
    height: auto;
    background-image: var(--hero-bg-mobile);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 390/200;
  }
}
.home-content {
  padding: 0;
  position: relative;
}

.home-disclaimer {
  padding: 12px 0 72px 0;
  color: var(--text-default, #464646);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin: 0;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 88px;
  margin-bottom: 64px;
}

.info-card {
  display: flex;
  padding: 40px 24px 40px 128px;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 12px 16px -4px rgba(34, 34, 34, 0.08), 0px 4px 6px -2px rgba(34, 34, 34, 0.03), 0px 2px 2px -1px rgba(34, 34, 34, 0.04);
  position: relative;
}
.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(to right, #8cb6e1, #f0cd15);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.info-card__icon {
  display: flex;
  width: 120px;
  height: 120px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: -24px;
  top: 40px;
  border-radius: 999px;
  background: #f0cd15;
  box-shadow: -8px 8px 0px 0px #8cb6e1;
  z-index: 3;
}
.info-card__icon img {
  width: 80px;
  height: 80px;
  display: block;
}

.info-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.info-card__text {
  color: var(--primary-text, #222);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.info-card__button {
  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 6px;
  background: var(--secondary, #8cb6e1);
  color: var(--primary-text, #222);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: var(--line-height-base, 24px);
  transition: background-color 0.2s ease;
  align-self: flex-start;
}
.info-card__button:hover {
  background-color: #7aa3c7;
  text-decoration: none;
}
.info-card__button img {
  width: 24px;
  height: 24px;
  display: block;
  transition: transform 0.2s ease;
}
.info-card__button:hover img {
  transform: translateX(4px);
}

.home-footer-disclaimer {
  color: var(--text-default, #464646);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.home-medical-disclaimer {
  margin-top: 72px;
  margin-bottom: 40px;
}
.home-medical-disclaimer p {
  color: var(--text-default, #464646);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
}
.home-medical-disclaimer p a {
  color: var(--primary-text, #222);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
.home-medical-disclaimer p a:hover {
  text-decoration: none;
}

@media (max-width: 1200px) {
  .info-cards-grid {
    gap: 40px;
  }
  .info-card {
    padding: 32px 20px 32px 100px;
  }
  .info-card__icon {
    width: 80px;
    height: 80px;
    left: 0px;
    top: 32px;
  }
  .info-card__icon img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 992px) {
  .info-cards-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .info-card {
    padding: 32px 20px 32px 100px;
  }
  .info-card__button {
    align-self: center;
  }
  .home-disclaimer {
    padding: 12px 0 48px 0;
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 768px) {
  .info-cards-grid {
    gap: 96px;
    margin-top: 104px;
  }
  .info-card {
    padding: 88px 16px 32px 16px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .info-card__icon {
    width: 120px;
    height: 120px;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
  }
  .info-card__icon img {
    width: 80px;
    height: 80px;
  }
  .info-card__content {
    gap: 16px;
    text-align: center;
  }
  .home-disclaimer {
    padding: 12px 0 32px 0;
  }
}
.info-box {
  position: relative;
  margin-bottom: 32px;
}
.info-box::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -24px;
  width: 112px;
  height: 136px;
  background-image: url("/assets/images/icons/decor.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  pointer-events: none;
}
.info-box .info-box__content {
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  background: #fff;
  position: relative;
  z-index: 2;
}
.info-box .info-box__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(to right, var(--tertiary, #f0cd15), #ffffff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.info-box .info-box__title {
  color: var(--primary-text, #222);
  font-size: 32px;
  font-weight: 600;
  line-height: 44px;
  margin: 0;
  text-align: left;
}
.info-box .info-box__title strong,
.info-box .info-box__title b {
  font-weight: 600;
}
.info-box .info-box__title sup {
  font-size: 14px;
  font-weight: 400;
  vertical-align: super;
  line-height: 0;
  position: relative;
  top: 0.2em;
}
.info-box .info-box__text {
  color: var(--primary-text, #222);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
  text-align: left;
}
.info-box .info-box__text strong,
.info-box .info-box__text b {
  font-weight: 600;
}
.info-box .info-box__text sup {
  font-size: 14px;
  font-weight: 400;
  vertical-align: super;
  line-height: 0;
  position: relative;
  top: 0.2em;
}

@media (max-width: 768px) {
  .info-box .info-box__title {
    font-size: 22px;
    line-height: 32px;
  }
  .info-box .info-box__text {
    font-size: 16px;
    line-height: 24px;
  }
}
#isi-preview-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

#isi-preview-container.isi-preview-visible {
  transform: translateY(0);
  box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.1);
}

#isi-preview-content {
  flex: 1;
  overflow: hidden;
}
#isi-preview-content .safety-information {
  margin: 0;
  padding: 0;
}
#isi-preview-content .safety-information .safety-information__header {
  padding: 5px 0;
}
#isi-preview-content .safety-information .safety-information__content {
  padding: 0;
}
#isi-preview-content .safety-information .safety-information__content .safety-information__grid {
  padding-top: 12px;
}
#isi-preview-content .safety-information .safety-information__content .safety-information__grid .safety-information__column {
  gap: 0;
}
#isi-preview-content .safety-information .safety-information__content .safety-information__grid .safety-information__column .safety-information__title {
  padding-bottom: 8px;
}
#isi-preview-content .safety-information .safety-information__content .safety-information__grid .safety-information__column .safety-information__section {
  gap: 8px;
}

#isi-scroll-arrow {
  position: absolute;
  top: -20px;
  right: 20px;
  display: flex;
  width: 40px;
  height: 40px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  background: var(--secondary, #8cb6e1);
  text-decoration: none;
  transition: background-color 0.2s ease;
  z-index: 10;
}

@media (min-width: 1320px) {
  #isi-scroll-arrow {
    transform: translateX(50%);
    right: calc(50% - 1320px / 2 + 52px);
  }
}
@media (max-width: 992px) {
  #isi-scroll-arrow {
    top: -16px;
    width: 32px;
    height: 32px;
    padding: 6px;
  }
}
#isi-scroll-arrow:hover {
  background: #7ba5d0;
}

#isi-scroll-arrow img {
  height: 40px;
  max-width: 28px;
}

@media (max-width: 576px) {
  .safety-information__header .container,
  .safety-information__content .container {
    padding-inline: 16px;
  }
  .safety-information__header .container .safety-information__grid,
  .safety-information__content .container .safety-information__grid {
    padding-top: 20px;
  }
  #isi-scroll-arrow {
    right: 16px;
  }
  #isi-scroll-arrow img {
    height: 20px;
    width: 20px;
  }
  .safety-information__header-title {
    padding-right: 32px;
  }
  .safety-information__header-title sup {
    font-size: 10px;
    font-weight: 500;
  }
}
html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

section {
  background: linear-gradient(180deg, rgba(84, 86, 90, 0.08) 0%, rgba(84, 86, 90, 0) 30.82%);
}
@media (max-width: 768px) {
  section {
    background: linear-gradient(180deg, rgba(84, 86, 90, 0.08) 0%, rgba(84, 86, 90, 0) 30.82%), #fff;
  }
}

body.mobile-nav-is-open {
  overflow: hidden;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.nowrap {
  white-space: nowrap;
}
@media (max-width: 576px) {
  .nowrap.exclude-mobile {
    white-space: normal;
  }
}
.nowrap.strong {
  font-weight: 600;
}

.new-line {
  display: block;
}
@media (max-width: 768px) {
  .new-line {
    display: inline;
  }
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 3rem;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 3rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}
.modal-user-type-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(60, 60, 60, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-user-type-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-user-type-box {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.modal-user-type-overlay.show .modal-user-type-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-user-type-header {
  display: flex;
  padding: 24px 40px;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  background: var(--secondary, #8cb6e1);
}

.modal-user-type-title {
  color: var(--primary-text, #222);
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  margin: 0;
}

.modal-user-type-close {
  background: rgba(34, 34, 34, 0.2);
  border: none;
  color: var(--primary-text, #222);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  margin-left: auto;
}

.modal-user-type-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.modal-user-type-body {
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
  background: linear-gradient(180deg, rgba(84, 86, 90, 0.08) 0%, rgba(84, 86, 90, 0) 30.82%), #fff;
}

.modal-user-type-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.modal-user-type-body p {
  color: var(--primary-text, #222);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}

.modal-user-type-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  width: 100%;
}

.modal-user-type-btn {
  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 6px;
  background: var(--secondary, #8cb6e1);
  color: var(--primary-text, #222);
  font-family: "Inter", sans-serif;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  min-width: 80px;
}

.modal-user-type-btn:hover {
  background: rgb(119.775862069, 169.1620689655, 219.724137931);
}

@media (max-width: 900px) {
  .modal-user-type-box {
    max-width: calc(100vw - 32px);
    margin: 16px;
  }
}
@media (max-width: 600px) {
  .modal-user-type-box {
    max-width: 100vw;
    width: 100vw;
    height: 100vh;
    margin: 0;
    border-radius: 0;
    transform: none !important;
    opacity: 1 !important;
  }
  .modal-user-type-header {
    padding: 16px;
  }
  .modal-user-type-title {
    font-size: 20px;
    line-height: 28px;
  }
  .modal-user-type-body {
    padding: 40px 16px;
  }
  .modal-user-type-body p {
    font-size: 16px;
    line-height: 24px;
  }
  .modal-user-type-buttons {
    justify-content: center;
  }
}
.not-found__hero {
  text-align: center;
  margin-bottom: 60px;
  padding: 50px 40px;
}
@media (max-width: 768px) {
  .not-found__hero {
    margin-bottom: 50px;
    padding: 30px 20px;
  }
}
.not-found__heading {
  color: var(--text-dark, #222);
  font-size: 42px;
  font-weight: 700;
  line-height: 50px;
  margin: 0 0 16px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .not-found__heading {
    font-size: 32px;
    line-height: 40px;
  }
}
.not-found__subtitle {
  color: var(--text-default, #464646);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin: 0 0 12px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .not-found__subtitle {
    font-size: 18px;
    line-height: 26px;
  }
}
.not-found__description {
  color: var(--text-default, #464646);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .not-found__description {
    font-size: 14px;
    line-height: 22px;
  }
}
.not-found__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 768px) {
  .not-found__content {
    gap: 40px;
  }
}
.not-found__section {
  width: 100%;
}
.not-found__section-title {
  color: var(--text-dark, #222);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin: 0 0 32px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .not-found__section-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 24px;
  }
}
.not-found__section-title svg {
  flex-shrink: 0;
}
.not-found__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .not-found__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.not-found__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.not-found__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary, #8cb7e1);
  text-decoration: none;
}
@media (max-width: 768px) {
  .not-found__card {
    padding: 20px;
    gap: 12px;
  }
}
.not-found__card-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .not-found__card-icon {
    font-size: 28px;
    width: 40px;
    height: 40px;
  }
}
.not-found__card-content {
  flex: 1;
  min-width: 0;
}
.not-found__card-content h3 {
  color: var(--text-dark, #222);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin: 0 0 4px 0;
}
@media (max-width: 768px) {
  .not-found__card-content h3 {
    font-size: 16px;
    line-height: 22px;
  }
}
.not-found__card-content p {
  color: var(--text-default, #464646);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}
@media (max-width: 768px) {
  .not-found__card-content p {
    font-size: 13px;
    line-height: 18px;
  }
}
.not-found__help-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .not-found__help-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.not-found__help-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #e5e7eb;
}
@media (max-width: 768px) {
  .not-found__help-item {
    padding: 24px;
  }
}
.not-found__help-item h3 {
  color: var(--text-dark, #222);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: 0 0 12px 0;
}
@media (max-width: 768px) {
  .not-found__help-item h3 {
    font-size: 18px;
    line-height: 24px;
  }
}
.not-found__help-item p {
  color: var(--text-default, #464646);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 20px 0;
}
@media (max-width: 768px) {
  .not-found__help-item p {
    font-size: 15px;
    line-height: 22px;
  }
}
.not-found__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary, #8cb7e1);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  padding: 12px 20px;
  background: #fff;
  border: 2px solid var(--primary, #8cb7e1);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.not-found__cta:hover {
  background: var(--primary, #8cb7e1);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .not-found__cta {
    font-size: 15px;
    padding: 10px 16px;
  }
}
.not-found__cta svg {
  flex-shrink: 0;
}

.resources-section {
  padding: 64px 0;
}
@media (max-width: 768px) {
  .resources-section {
    padding: 40px 0;
  }
}
.resources-section .resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 992px) {
  .resources-section .resources-grid {
    grid-template-columns: 1fr;
  }
}
.resources-section .resources-grid .resource-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.resources-section .resources-grid .resource-item .resource-title {
  color: var(--primary-text, #222);
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .resources-section .resources-grid .resource-item .resource-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.resources-section .resources-grid .resource-item .resource-card {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px 0 rgba(0, 0, 0, 0.05), 0 16px 32px 0 rgba(0, 0, 0, 0.04), 0 12px 16px 0 rgba(0, 0, 0, 0.02);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.resources-section .resources-grid .resource-item .resource-card .resource-image {
  width: 100%;
  height: auto;
  display: block;
}
.resources-section .resources-grid .resource-item .resource-card .video-thumbnail {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.resources-section .resources-grid .resource-item .resource-card .video-thumbnail:hover .resource-image {
  transform: scale(1.05);
  opacity: 1;
}
.resources-section .resources-grid .resource-item .resource-card .video-thumbnail:hover::after {
  opacity: 1;
}
.resources-section .resources-grid .resource-item .resource-card .video-thumbnail::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(140, 182, 225, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.resources-section .resources-grid .resource-item .resource-card .video-thumbnail .resource-image {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}
.resources-section .resources-grid .resource-item .resource-card .resource-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  justify-content: space-between;
  text-align: center;
}
.resources-section .resources-grid .resource-item .resource-card .resource-content p {
  color: var(--text-default, #464646);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  margin: 0;
}
.resources-section .resources-grid .resource-item .resource-card .resource-content .resource-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  background: var(--secondary, #8cb6e1);
  color: var(--primary-text, #222);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  align-self: center;
}
.resources-section .resources-grid .resource-item .resource-card .resource-content .resource-btn:hover {
  background: #7aa5d1;
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--primary-text, #222);
}
.resources-section .resources-grid .resource-item .resource-card .resource-content .resource-btn:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .resources-section .resources-grid .resource-item .resource-card .resource-content .resource-btn {
    font-size: 16px;
    line-height: 24px;
    padding: 12px 20px;
  }
}
.resources-section .resources-grid .resource-item .resource-card .resource-content .video-thumbnail + wistia-player {
  display: block;
  cursor: pointer;
}
.resources-section .resources-grid .resource-item .resource-card .resource-content .video-thumbnail + wistia-player a {
  display: none;
}
.resources-section .resources-grid .resource-item .resource-card .resource-content .resource-content wistia-player {
  display: inline-block;
}
.resources-section .resources-grid .resource-item .resource-card .resource-content .resource-content wistia-player a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  background: var(--secondary, #8cb6e1);
  color: var(--primary-text, #222);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.resources-section .resources-grid .resource-item .resource-card .resource-content .resource-content wistia-player a:hover {
  background: #7aa5d1;
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--primary-text, #222);
}
.resources-section .resources-grid .resource-item .resource-card .resource-content .resource-content wistia-player a:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .resources-section .resources-grid .resource-item .resource-card .resource-content .resource-content wistia-player a {
    font-size: 16px;
    line-height: 24px;
    padding: 12px 20px;
  }
}

.savings-section {
  padding: 64px 0;
}
@media (max-width: 768px) {
  .savings-section {
    padding: 40px 0;
  }
}

.copay-banner {
  display: flex;
  padding: 40px 80px;
  margin-bottom: 40px;
  flex-direction: column;
  border-radius: 8px;
  border-right: 10px solid #8cb6e1;
  border-left: 10px solid #8cb6e1;
  background: #f0cd15;
}
.copay-banner p {
  color: var(--primary-text, #222);
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .copay-banner p {
    font-size: 26px;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  .copay-banner {
    padding: 24px;
  }
}

.copay-content {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}
@media (max-width: 992px) {
  .copay-content {
    flex-direction: column;
    gap: 40px;
  }
}

.copay-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.copay-left h2 {
  color: var(--primary-text, #222);
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  margin: 0;
}
@media (max-width: 768px) {
  .copay-left h2 {
    font-size: 26px;
    line-height: 32px;
  }
}
.copay-left .download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--secondary, #8cb6e1);
  color: var(--primary-text, #222);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
  text-decoration: none;
  min-width: 274px;
}
.copay-left .download-btn:hover:not(:disabled) {
  background: #7aa5d1;
  transform: translateY(-1px);
}
.copay-left .download-btn:active:not(:disabled) {
  transform: translateY(0);
}
.copay-left .download-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.copay-left .download-btn.loading {
  pointer-events: none;
}
.copay-left .download-btn .btn-spinner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.copay-left .download-btn .btn-spinner svg {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.copay-left .instructions {
  color: var(--primary-text, #222);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}
@media (max-width: 768px) {
  .copay-left .instructions {
    font-size: 16px;
    line-height: 24px;
  }
}

.copay-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .copay-right {
    order: -1;
  }
}

.copay-card-image {
  width: 395px;
  height: 230px;
  aspect-ratio: 79/46;
  object-fit: cover;
}
@media (max-width: 768px) {
  .copay-card-image {
    width: 100%;
    max-width: 395px;
    height: auto;
  }
}

.terms-section {
  padding: 64px 0;
}
@media (max-width: 768px) {
  .terms-section {
    padding: 40px 0;
  }
}
.terms-section .container .info-box {
  margin-bottom: 0;
}

.terms-title {
  color: var(--primary-text, #222);
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .terms-title {
    font-size: 26px;
    line-height: 32px;
  }
}

.terms-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.term-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 768px) {
  .term-item {
    gap: 12px;
  }
}

.term-icon {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: #8cb6e1;
  flex-shrink: 0;
}
.term-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.term-content {
  flex: 1;
}
.term-content h4 {
  color: var(--primary-text, #222);
  font-size: 24px;
  font-weight: 600;
  line-height: 30 px;
  margin: 0 0 8px 0;
}
@media (max-width: 768px) {
  .term-content h4 {
    font-size: 18px;
    line-height: 26px;
  }
}
.term-content p {
  color: var(--text-default, #464646);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}
@media (max-width: 768px) {
  .term-content p {
    font-size: 16px;
    line-height: 24px;
  }
}
.term-content p strong {
  color: var(--primary-text, #222);
  font-weight: 600;
}

.terms-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .terms-footer {
    margin-bottom: 56px;
  }
}
.terms-footer p {
  color: var(--primary-text, #222);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}
@media (max-width: 768px) {
  .terms-footer p {
    font-size: 16px;
    line-height: 24px;
  }
}

.safety-information {
  background: #ffffff;
  color: var(--isi-color, #000);
}

.safety-information__header {
  padding: 6px 0;
  width: 100%;
}

.safety-information__header-title {
  display: none;
  color: var(--isi-color, #000);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
}

.safety-information__content {
  padding: 32px 0 16px;
}

.safety-information__grid {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 32px;
  align-items: start;
  padding-top: 12px;
}

.safety-information__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.safety-information__title {
  color: var(--isi-color, #000);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
  text-transform: uppercase;
}

.safety-information__section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.safety-information__section-title {
  color: var(--isi-color, #000);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
}

.safety-information__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.safety-information__list li {
  color: var(--isi-color, #000);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
  padding-left: 24px;
}
.safety-information__list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--isi-color, #000);
}
.safety-information__list li strong {
  font-weight: 600;
}

.safety-information__warning {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 2px solid var(--isi-color, #000);
  padding: 12px 16px;
}

.safety-information__warning-title {
  color: var(--isi-color, #000);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  margin: 0;
  letter-spacing: -0.03em;
}

.safety-information__warning-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.safety-information__warning-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.safety-information__warning-subtitle {
  color: var(--isi-color, #000);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.safety-information__warning-section p {
  color: var(--isi-color, #000);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
}

@media (max-width: 1200px) {
  .safety-information__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .safety-information__title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .safety-information__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .safety-information__title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .safety-information__grid {
    gap: 16px;
  }
  .safety-information__column {
    gap: 12px;
  }
  .safety-information__section {
    gap: 12px;
  }
  .safety-information__list {
    gap: 8px;
  }
  .safety-information__title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0;
  }
  .safety-information__list li,
  .safety-information__warning-section p {
    font-size: 14px;
    line-height: 20px;
  }
}
.safety-information__additional {
  padding-bottom: 64px;
  background: #ffffff;
}

.safety-information__additional-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: 16px;
}

.safety-information__additional-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.safety-information__additional-title {
  color: var(--isi-color, #000);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

.safety-information__additional-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.safety-information__additional-list li {
  color: var(--isi-color, #000);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
  padding-left: 24px;
}
.safety-information__additional-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--isi-color, #000);
}
.safety-information__additional-list li a {
  color: var(--isi-color, #000);
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.safety-information__additional-list li strong {
  font-weight: 600;
}

.safety-information__additional-section p {
  color: var(--isi-color, #000);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
.safety-information__additional-section p a {
  color: var(--isi-color, #000);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
.safety-information__additional-section p a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.safety-information__additional-section p strong {
  font-weight: 600;
}

@media (max-width: 992px) {
  .safety-information__additional {
    padding: 48px 0;
  }
  .safety-information__additional-content {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .safety-information__header-title {
    display: block;
    font-size: 12px;
    line-height: 18px;
  }
  .safety-information__content {
    padding-top: 8px;
  }
  .safety-information__additional {
    padding: 0;
  }
  .safety-information__additional-content {
    gap: 20px;
  }
  .safety-information__additional-section {
    gap: 12px;
  }
  .safety-information__additional-list {
    gap: 12px;
  }
  .safety-information__additional-title {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 576px) {
  .safety-information__column.safety-information__column--safety .safety-information__warning-title {
    letter-spacing: normal;
  }
}
.hero-banner.site-map-hero-banner {
  height: 200px;
  background: rgba(140, 182, 225, 0.8);
}
@media (max-width: 768px) {
  .hero-banner.site-map-hero-banner {
    height: auto;
  }
  .hero-banner.site-map-hero-banner::after {
    display: none;
  }
}

.site-map-section {
  padding: 64px 0;
}
@media (max-width: 768px) {
  .site-map-section {
    padding: 40px 0;
  }
}
.site-map-section .site-map-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-map-section .site-map-list > li > a {
  color: var(--text-default, #464646);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: text-decoration 0.2s ease;
}
.site-map-section .site-map-list > li > a:hover {
  text-decoration: none;
}
.site-map-section .site-map-list > li .site-map-sub-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.site-map-section .site-map-list > li .site-map-sub-list li {
  position: relative;
  padding-left: 20px;
}
.site-map-section .site-map-list > li .site-map-sub-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background-color: var(--text-default, #464646);
  border-radius: 50%;
}
.site-map-section .site-map-list > li .site-map-sub-list li a {
  color: var(--text-default, #464646);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: text-decoration 0.2s ease;
}
.site-map-section .site-map-list > li .site-map-sub-list li a:hover {
  text-decoration: none;
}
.site-map-section .site-map-list > li:nth-last-child(4) {
  margin-bottom: 32px;
}
.site-map-section .site-map-list > li:last-child {
  margin-bottom: 0;
}

.starting-treatment-content {
  padding: 64px 0;
}
.starting-treatment-content .container .info-box {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .starting-treatment-content {
    padding: 40px 0;
  }
}
.starting-treatment-content .treatment-section {
  margin-bottom: 32px;
}
.starting-treatment-content .treatment-section:last-child {
  margin-bottom: 0;
}
.starting-treatment-content h2 {
  color: var(--primary-text, #222);
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  margin-bottom: 32px;
}
.starting-treatment-content h2.less-margin {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .starting-treatment-content h2 {
    font-size: 26px;
    line-height: 32px;
  }
}
.starting-treatment-content .section-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.starting-treatment-content .section-icon {
  display: flex;
  width: 72px;
  height: 72px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--secondary, #8cb6e1);
  box-shadow: -8px 8px 0px 0px var(--tertiary, #f0cd15);
  flex-shrink: 0;
}
.starting-treatment-content .section-icon img {
  object-fit: contain;
}
.starting-treatment-content .section-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.starting-treatment-content .main-statement {
  color: var(--primary-text, #222);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}
.starting-treatment-content .main-statement strong {
  font-weight: 600;
}
@media (max-width: 768px) {
  .starting-treatment-content .main-statement {
    font-size: 16px;
    line-height: 24px;
  }
}
.starting-treatment-content .bullet-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.starting-treatment-content .bullet-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.starting-treatment-content .bullet-icon {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: #8cb6e1;
  flex-shrink: 0;
}
.starting-treatment-content .bullet-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.starting-treatment-content .bullet-item p {
  color: var(--primary-text, #222);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
.starting-treatment-content .starting-doses-image {
  width: 585px;
  height: 246px;
  aspect-ratio: 195/82;
  margin: 0 auto 64px;
}
@media (max-width: 992px) {
  .starting-treatment-content .starting-doses-image {
    width: 100%;
    max-width: 585px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .starting-treatment-content .starting-doses-image {
    margin-top: 24px;
  }
}
.starting-treatment-content .starting-doses-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.starting-treatment-content .content-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.starting-treatment-content .content-paragraphs p {
  color: var(--primary-text, #222);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
.starting-treatment-content .content-paragraphs .footnote {
  color: var(--text-default, #464646);
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 768px) {
  .starting-treatment-content .content-paragraphs .footnote {
    font-size: 16px;
  }
}
.starting-treatment-content .warning-box {
  display: flex;
  gap: 16px;
  padding: 16px 24px;
  background: linear-gradient(270deg, rgba(84, 86, 90, 0) 20.01%, rgba(84, 86, 90, 0.08) 100%), #fff;
  border-radius: 8px;
  margin-bottom: 40px;
  align-items: start;
  position: relative;
}
.starting-treatment-content .warning-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(to right, var(--primary-text, #222), #ffffff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.starting-treatment-content .warning-box .warning-icon {
  width: 40px;
  height: 72px;
}
.starting-treatment-content .warning-box .warning-icon img {
  width: 40px;
  height: 72px;
}
@media (max-width: 768px) {
  .starting-treatment-content .warning-box .warning-icon {
    width: 22px;
    height: 40px;
  }
  .starting-treatment-content .warning-box .warning-icon img {
    width: 22px;
    height: 40px;
  }
}
.starting-treatment-content .warning-box .warning-content {
  flex: 1;
  position: relative;
  z-index: 2;
}
.starting-treatment-content .warning-box .warning-content p {
  color: var(--text-default, #464646);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
}
.starting-treatment-content .side-effects-note {
  color: var(--text-default, #464646);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 16px 0;
}
.starting-treatment-content .footnote {
  color: var(--text-default, #464646);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}
.starting-treatment-content .footnote sup {
  font-size: 9px;
  position: relative;
  top: 1px;
}
@media (max-width: 768px) {
  .starting-treatment-content .footnote {
    font-size: 16px;
  }
}

.hero-banner.thank-you-hero-banner {
  height: 200px;
  background: rgba(140, 182, 225, 0.8);
}
@media (max-width: 768px) {
  .hero-banner.thank-you-hero-banner {
    height: auto;
  }
  .hero-banner.thank-you-hero-banner::after {
    display: none;
  }
}
.hero-banner.thank-you-hero-banner h1 {
  text-wrap: pretty;
}

.thank-you-section {
  padding: 64px 0;
}
@media (max-width: 768px) {
  .thank-you-section {
    padding: 40px 0;
  }
}

.thank-you-content {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}
@media (max-width: 992px) {
  .thank-you-content {
    flex-direction: column;
    gap: 40px;
  }
}

.thank-you-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.thank-you-left h1 {
  color: var(--primary-text, #222);
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  margin: 0;
}
@media (max-width: 768px) {
  .thank-you-left h1 {
    font-size: 26px;
    line-height: 32px;
  }
}
.thank-you-left .thank-you-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.thank-you-left .thank-you-text p {
  color: var(--primary-text, #222);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}
@media (max-width: 768px) {
  .thank-you-left .thank-you-text p {
    font-size: 16px;
    line-height: 24px;
  }
}
.thank-you-left .download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  margin-top: 16px;
  background: var(--secondary, #8cb6e1);
  color: var(--primary-text, #222);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
}
.thank-you-left .download-btn:hover {
  background: #7aa5d1;
  transform: translateY(-1px);
}
.thank-you-left .download-btn:active {
  transform: translateY(0);
}

.thank-you-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .thank-you-right {
    order: -1;
  }
}

.copay-card-image {
  width: 395px;
  height: 230px;
  aspect-ratio: 79/46;
  object-fit: cover;
}
@media (max-width: 768px) {
  .copay-card-image {
    width: 100%;
    max-width: 395px;
    height: auto;
  }
}

.support-section {
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .support-section {
    padding: 40px 0;
  }
}
.support-section h2 {
  color: var(--primary-text, #222);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin: 0 0 16px 0;
}
@media (max-width: 768px) {
  .support-section h2 {
    font-size: 22px;
  }
}
.support-section h2:nth-of-type(2) {
  margin-top: 40px;
}
.support-section .support-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
}
.support-section .support-content p {
  color: var(--primary-text, #222);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}
@media (max-width: 768px) {
  .support-section .support-content p {
    font-size: 16px;
    line-height: 24px;
  }
}
.support-section .support-content .get-started-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--secondary, #8cb6e1);
  color: var(--primary-text, #222);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
  margin-top: 16px;
  text-decoration: none;
}
.support-section .support-content .get-started-btn:hover {
  background: #7aa5d1;
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--primary-text, #222);
}
.support-section .support-content .get-started-btn:active {
  transform: translateY(0);
}

.why-belbuca-different {
  padding: 64px 0;
  background: linear-gradient(180deg, rgba(84, 86, 90, 0.08) 0%, rgba(84, 86, 90, 0) 30.82%), #fff;
}
@media (max-width: 768px) {
  .why-belbuca-different {
    padding: 40px 0;
  }
}
.why-belbuca-different .why-belbuca-header {
  margin-bottom: 48px;
}
.why-belbuca-different .why-belbuca-header h2 {
  color: var(--text-dark);
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
}
@media (max-width: 768px) {
  .why-belbuca-different .why-belbuca-header h2 {
    font-size: 26px;
    line-height: 32px;
  }
}
.why-belbuca-different .why-belbuca-header p {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .why-belbuca-different .why-belbuca-header p {
    font-size: 20px;
    line-height: 30px;
  }
}
.why-belbuca-different .why-belbuca-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  align-items: stretch;
}
@media (max-width: 992px) {
  .why-belbuca-different .why-belbuca-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .why-belbuca-different .why-belbuca-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.why-belbuca-different .why-belbuca-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .why-belbuca-different .why-belbuca-card {
    gap: 8px;
  }
}
.why-belbuca-different .why-belbuca-card .why-belbuca-card__icon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 186px;
}
.why-belbuca-different .why-belbuca-card .why-belbuca-card__icon img {
  width: 160px;
  height: 168px;
  display: block;
  margin-bottom: 8px;
}
.why-belbuca-different .why-belbuca-card .why-belbuca-card__icon .icon-disclaimer {
  color: var(--text-default);
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 0;
}
.why-belbuca-different .why-belbuca-card .why-belbuca-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-belbuca-different .why-belbuca-card .why-belbuca-card__content h3 {
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}
.why-belbuca-different .why-belbuca-card .why-belbuca-card__content h3 strong {
  font-weight: 600;
}
@media (max-width: 768px) {
  .why-belbuca-different .why-belbuca-card .why-belbuca-card__content h3.mobile-margin-top {
    margin-top: 16px;
  }
}
.why-belbuca-different .why-belbuca-card .why-belbuca-card__content p {
  color: var(--text-default);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
.why-belbuca-different .why-belbuca-disclaimer p {
  color: var(--text-default);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 0;
}

.why-belbuca-reasons {
  background: linear-gradient(180deg, rgba(84, 86, 90, 0.08) 0%, rgba(84, 86, 90, 0) 30.82%), #fff;
  padding: 64px 0;
}
@media (max-width: 768px) {
  .why-belbuca-reasons {
    padding: 40px 0;
  }
}
.why-belbuca-reasons .reasons-content .reasons-title {
  color: var(--text-dark);
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
}
@media (max-width: 768px) {
  .why-belbuca-reasons .reasons-content .reasons-title {
    font-size: 26px;
    line-height: 32px;
  }
}
.why-belbuca-reasons .reasons-content .reasons-subtitle {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .why-belbuca-reasons .reasons-content .reasons-subtitle {
    font-size: 20px;
  }
}
.why-belbuca-reasons .reasons-content .reasons-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-belbuca-reasons .reasons-content .reasons-list .reasons-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.why-belbuca-reasons .reasons-content .reasons-list .reasons-item .reasons-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-belbuca-reasons .reasons-content .reasons-list .reasons-item .reasons-icon img {
  width: 60px;
  height: 60px;
  display: block;
}
.why-belbuca-reasons .reasons-content .reasons-list .reasons-item .reasons-text {
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 768px) {
  .why-belbuca-reasons .reasons-content .reasons-list .reasons-item .reasons-text {
    font-size: 16px;
    line-height: 24px;
  }
}

.taking-belbuca-content {
  padding: 64px 0;
}
.taking-belbuca-content .container .info-box {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .taking-belbuca-content {
    padding: 40px 0;
  }
}

.taking-steps-section h2 {
  color: var(--primary-text, #222);
  font-size: 32px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .taking-steps-section h2 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 24px;
  }
}

.taking-steps-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.taking-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .taking-step {
    flex-direction: column;
    gap: 24px;
  }
}

.step-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 0;
}

.step-title-mobile {
  display: none;
  color: var(--primary-text, #222);
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  margin: 0;
}
@media (max-width: 992px) {
  .step-title-mobile {
    display: block;
  }
}
@media (max-width: 768px) {
  .step-title-mobile {
    font-size: 22px;
    line-height: 32px;
  }
}

.step-title-desktop {
  color: var(--primary-text, #222);
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  margin: 0;
}
@media (max-width: 992px) {
  .step-title-desktop {
    display: none;
  }
}
@media (max-width: 768px) {
  .step-title-desktop {
    font-size: 22px;
    line-height: 32px;
  }
}

.step-number {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: #8cb6e1;
  box-shadow: -8px 8px 0 0 #f0cd15;
  flex-shrink: 0;
}
.step-number span {
  color: #222;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

.step-icon {
  display: flex;
  width: 214px;
  height: 214px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.step-instructions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .step-instructions {
    gap: 12px;
  }
}

.bullet-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bullet-icon {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: #8cb6e1;
  flex-shrink: 0;
}
.bullet-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.bullet-item p {
  color: var(--primary-text, #222);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}
.bullet-item p strong {
  font-weight: 600;
}
@media (max-width: 768px) {
  .bullet-item p {
    font-size: 16px;
    line-height: 24px;
  }
}

.video-section {
  padding: 64px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .video-section {
    padding: 40px 0;
    background: linear-gradient(180deg, rgba(84, 86, 90, 0.08) 0%, rgba(84, 86, 90, 0) 30.82%), #fff;
  }
}
.video-section h2 {
  color: #222;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .video-section h2 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 16px;
  }
}

.video-placeholder {
  display: flex;
  width: 840px;
  height: 472.5px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 8px;
  background: #54565a;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 992px) {
  .video-placeholder {
    width: 100%;
    max-width: 840px;
    height: auto;
    aspect-ratio: 16/9;
  }
}
.video-placeholder wistia-player {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.video-placeholder .video-thumbnail {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.video-placeholder .video-thumbnail:hover {
  opacity: 0.9;
}
.video-placeholder .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.tips-section {
  padding: 64px 0;
}
@media (max-width: 768px) {
  .tips-section {
    padding: 40px 0;
  }
}

.tips-content {
  display: flex;
  gap: 64px;
  align-items: center;
}
@media (max-width: 992px) {
  .tips-content {
    flex-direction: column;
    gap: 40px;
  }
}

.tips-text {
  flex: 1;
}
.tips-text h2 {
  color: var(--primary-text, #222);
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .tips-text h2 {
    font-size: 26px;
    line-height: 32px;
  }
}

.tips-subtitle {
  color: var(--primary-text, #222);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .tips-subtitle {
    font-size: 20px;
    line-height: 30px;
  }
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tip-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tip-icon {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: #8cb6e1;
  flex-shrink: 0;
}
.tip-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.tip-item p {
  color: var(--primary-text, #222);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}
@media (max-width: 768px) {
  .tip-item p {
    font-size: 16px;
    line-height: 24px;
  }
}

.tips-image {
  flex: 1;
}
.tips-image img {
  width: 576px;
  height: 496px;
  object-fit: contain;
  border-radius: 8px;
}
@media (max-width: 992px) {
  .tips-image img {
    width: 100%;
    max-width: 576px;
    height: auto;
    aspect-ratio: 576/496;
  }
}

.dos-donts-section {
  padding: 64px 0;
}
@media (max-width: 768px) {
  .dos-donts-section {
    padding: 40px 0;
  }
}

.dos-donts-content {
  display: flex;
  gap: 64px;
  align-items: center;
}
@media (max-width: 992px) {
  .dos-donts-content {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

.dos-donts-image {
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .dos-donts-image {
    display: flex;
    justify-content: center;
  }
}
.dos-donts-image img {
  width: 370px;
  height: 497px;
  object-fit: contain;
  border-radius: 8px;
}
@media (max-width: 992px) {
  .dos-donts-image img {
    width: 100%;
    max-width: 370px;
    height: auto;
    aspect-ratio: 370/497;
  }
}

.dos-donts-text {
  flex: 1;
}
.dos-donts-text h2 {
  color: var(--primary-text, #222);
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .dos-donts-text h2 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 16px;
  }
}

.dos-section,
.donts-section {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .dos-section,
  .donts-section {
    margin-bottom: 16px;
  }
}
.dos-section:last-child,
.donts-section:last-child {
  margin-bottom: 0;
}

.dos-list,
.donts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .dos-list,
  .donts-list {
    gap: 12px;
  }
}

.do-item,
.dont-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.do-icon,
.dont-icon {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  flex-shrink: 0;
}
.do-icon img,
.dont-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.do-item p,
.dont-item p {
  color: var(--primary-text, #222);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 7px 0 0 0;
}
@media (max-width: 768px) {
  .do-item p,
  .dont-item p {
    font-size: 16px;
    line-height: 24px;
  }
}

.what-to-avoid-section {
  padding: 64px 0;
}
@media (max-width: 768px) {
  .what-to-avoid-section {
    padding: 40px 0;
  }
}

.what-to-avoid-content {
  display: flex;
  gap: 64px;
  align-items: center;
}
@media (max-width: 992px) {
  .what-to-avoid-content {
    flex-direction: column;
    gap: 40px;
  }
}

.what-to-avoid-text {
  flex: 1;
}
.what-to-avoid-text h2 {
  color: var(--primary-text, #222);
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .what-to-avoid-text h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 24px;
  }
}

.avoid-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .avoid-list {
    gap: 12px;
    margin-bottom: 20px;
  }
}

.avoid-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.avoid-icon {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  flex-shrink: 0;
}
.avoid-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.avoid-item p {
  color: var(--primary-text, #222);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 6px 0 0 0;
}
@media (max-width: 768px) {
  .avoid-item p {
    font-size: 16px;
    line-height: 24px;
  }
}

.warning-text p {
  color: var(--text-default, #464646);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}
.warning-text p strong {
  font-weight: 600;
}
@media (max-width: 768px) {
  .warning-text p {
    font-size: 14px;
    line-height: 20px;
  }
}

.what-to-avoid-image {
  flex: 1;
}
@media (max-width: 992px) {
  .what-to-avoid-image {
    display: flex;
    justify-content: center;
  }
}
.what-to-avoid-image img {
  width: 576px;
  height: 496px;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 992px) {
  .what-to-avoid-image img {
    width: 100%;
    max-width: 576px;
    height: auto;
    aspect-ratio: 576/496;
  }
}

/*# sourceMappingURL=styles.css.map */
