*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #222222;
  background: #ffffff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.2;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
input,
textarea,
button,
select {
  font-family: 'Montserrat', sans-serif;
}
.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn {
  display: inline-block;
  padding: 14px 30px;
  background: #8bbf54;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  border: 2px solid #8bbf54;
  cursor: pointer;
}
.btn:hover {
  background: #71a33d;
  border-color: #71a33d;
  color: #ffffff;
}
.btn--green {
  background: #8bbf54;
  border-color: #8bbf54;
  color: #ffffff;
  border-radius: 25px;
}
.btn--green:hover {
  background: #71a33d;
  border-color: #71a33d;
  color: #ffffff;
}
.btn--outline {
  display: inline-block;
  padding: 14px 30px;
  background: transparent;
  color: #222222;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  border-color: #222222;
}
.btn--outline:hover {
  background: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
  color: #222222;
}
.btn--outline:hover {
  background: #222222;
  color: #ffffff;
}
.btn--outline-green {
  display: inline-block;
  padding: 14px 30px;
  background: transparent;
  color: #222222;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  border-color: #8bbf54;
}
.btn--outline-green:hover {
  background: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
  color: #222222;
}
.btn--outline-green:hover {
  background: #8bbf54;
  color: #ffffff;
}
.btn--outline-green:hover {
  background: transparent;
  border-color: #222222;
  color: #222222;
}
.btn--full {
  display: block;
  width: 100%;
}
.menu {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.menu > .menu__item {
  min-height: 82px;
}
.menu__item {
  position: relative;
  display: flex;
  align-items: center;
}
.menu__item--has-children {
  padding-right: 12px;
}
.menu__item--has-children::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #222222;
  border-bottom: 1px solid #222222;
  transform: translateY(-65%) rotate(45deg);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.menu__item--has-children:hover::after,
.menu__item--has-children:focus-within::after {
  border-color: #5a8930;
}
.menu__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  font-size: 13px;
  font-weight: 500;
  color: #222222;
  line-height: 1;
  letter-spacing: normal;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.menu__item--active .menu__link {
  font-weight: 700;
}
.menu__item--active::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  width: 7px;
  height: 7px;
  margin-left: -3px;
  border-radius: 50%;
  background: #8bbf54;
}
.menu__link:hover {
  color: #5a8930;
}
.menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 270px;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 48px rgba(34, 34, 34, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  z-index: 220;
}
.menu .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.menu .sub-menu .menu__item {
  display: block;
  width: 100%;
}
.menu .sub-menu .menu__item--active::before {
  display: none;
}
.menu .sub-menu .menu__link {
  justify-content: flex-start;
  width: 100%;
  min-height: 0;
  padding: 10px 22px;
  color: #222222;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  white-space: normal;
  text-align: left;
}
.menu .sub-menu .menu__link:hover,
.menu .sub-menu .menu__link:focus {
  color: #5a8930;
  background: rgba(139, 191, 84, 0.12);
}
.menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  transform: translate(12px, 0);
}
.menu .sub-menu .sub-menu::before {
  left: -14px;
  right: auto;
  top: 0;
  width: 14px;
  height: 100%;
}
.menu__item:hover > .sub-menu,
.menu__item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.menu .sub-menu .menu__item:hover > .sub-menu,
.menu .sub-menu .menu__item:focus-within > .sub-menu {
  transform: translate(0, 0);
}
.menu__submenu-toggle {
  display: none;
}
.header__nav.is-open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 20px;
  z-index: 200;
}
.header__nav.is-open .menu {
  flex-direction: column;
  gap: 16px;
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(34, 34, 34, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.header .wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  height: 82px;
  gap: 28px;
  padding: 0 28px;
}
.header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
  min-width: 205px;
}
.header__logo-image {
  display: block;
  width: 178px;
  height: auto;
}
.header__nav {
  min-width: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.header__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 26px;
  margin-left: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  white-space: nowrap;
  border-radius: 10px;
  justify-self: end;
}
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-left: 16px;
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #222222;
  margin: 3px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header__hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(34, 34, 34, 0.1);
  border-bottom-color: rgba(34, 34, 34, 0.08);
}
.hero {
  position: relative;
  height: 900px;
  min-height: 900px;
  overflow: hidden;
  background: #ece7d8;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d9cfbc;
}
.hero .wrap {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 182px;
}
.hero__content {
  position: relative;
  width: 100%;
  max-width: 510px;
  margin-left: 58px;
}
.hero__content::before {
  content: "";
  position: absolute;
  top: -26px;
  left: 0;
  right: 0;
  bottom: -182px;
  background: rgba(255, 255, 255, 0.58);
  pointer-events: none;
}
.hero__title-box {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 30px 26px 20px;
  text-align: center;
  background: transparent;
  box-shadow: none;
}
.hero__title {
  color: #222222;
  font-size: 54px;
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: normal;
  text-align: center;
}
.hero__title span,
.hero__title strong {
  display: block;
}
.hero__title span {
  font-weight: 300;
}
.hero__title strong {
  font-weight: 700;
  letter-spacing: normal;
}
.hero__accent {
  display: block;
  width: 148px;
  height: 6px;
  margin: 18px auto 0;
  background: rgba(139, 191, 84, 0.85);
}
.hero-card {
  position: relative;
  z-index: 5;
  margin-top: -182px;
  padding-bottom: 72px;
  overflow: hidden;
}
.hero-card .wrap {
  position: relative;
}
.hero-card .wrap::after {
  content: "";
  position: absolute;
  left: calc(55% + 80px);
  width: calc(45% - 80px + ((100vw - 100%) / 2));
  top: 169px;
  height: 25px;
  background: #8bbf54;
}
.hero-card__deck {
  position: relative;
  max-width: 540px;
}
.hero-card__deck::before {
  content: "";
  position: absolute;
  left: 43px;
  right: 17px;
  bottom: -18px;
  height: 36px;
  background: rgba(139, 191, 84, 0.18);
  box-shadow: 0 18px 38px rgba(139, 191, 84, 0.24);
}
.hero-card__inner {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 30px 44px 28px;
  box-shadow: 0 26px 60px rgba(32, 32, 32, 0.12);
}
.hero-card__lead {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 20px;
  color: #222222;
}
.hero-card__inner p {
  font-size: 15px;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 18px;
}
.hero-card__inner p:last-child {
  margin-bottom: 0;
}
.hero-card--centered {
  margin-top: -80px;
  padding-bottom: 80px;
  overflow: visible;
}
.hero-card--centered .wrap::after {
  display: none;
}
.hero-card--centered .hero-card__deck {
  max-width: 780px;
  margin: 0 auto;
}
.hero-card--centered .hero-card__deck::before {
  left: 60px;
  right: 60px;
}
.hero-card--centered .hero-card__deck::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 268px;
  height: 10px;
  background: #8bbf54;
  z-index: 3;
  border-radius: 4px;
}
.hero-card--centered .hero-card__inner {
  text-align: center;
  padding: 44px 60px 32px;
}
.showcase {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.showcase__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #5a8930;
  mix-blend-mode: multiply;
  z-index: 1;
  opacity: 0.5;
}
.showcase__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 60px;
  background: #8bbf54;
  z-index: 2;
  border-bottom-left-radius: 5px;
}
.showcase .wrap {
  position: relative;
  z-index: 3;
  padding-top: 85px;
}
.showcase__title {
  font-size: 56px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.showcase__title strong {
  font-weight: 700;
}
.showcase__title em {
  font-style: italic;
}
.showcase--tumors {
  background-position: center 28%;
}
.showcase--tumors .showcase__overlay {
  opacity: 0.48;
}
.showcase--tumors .wrap {
  text-align: center;
}
.showcase--tumors .showcase__title {
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
.showcase--tumors .showcase__title span,
.showcase--tumors .showcase__title strong {
  display: inline-block;
}
.showcase--tumors .showcase__title span {
  font-weight: 300;
}
.showcase--tumors .showcase__title strong {
  font-weight: 700;
}
.featured-story {
  display: flex;
  min-height: 400px;
}
.featured-story__image {
  width: 50%;
  background-size: cover;
  background-position: center;
  background-color: #C8C8C8;
}
.featured-story__image-link {
  display: block;
  width: 100%;
  height: 100%;
}
.featured-story__content {
  width: 50%;
  position: relative;
}
.featured-story__accent {
  position: absolute;
  top: -16px;
  right: 0;
  width: 300px;
  height: 26px;
  background: #8bbf54;
  z-index: 1;
  border-bottom-left-radius: 5px;
}
.featured-story__inner {
  max-width: 700px;
  padding: 60px 40px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
.featured-story__name {
  font-size: 36px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 24px;
}
.featured-story__inner p {
  font-size: 14px;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 16px;
}
.featured-story__inner p:last-child {
  margin-bottom: 0;
}
.stories.stories--page {
  background: #edf4e0;
}
.stories.stories--page .stories__grid {
  flex-wrap: wrap;
}
.stories.stories--page .stories__card {
  flex: 0 0 calc(25% - 23px);
}
.page-content {
  position: relative;
  display: flex;
  min-height: 500px;
}
.page-content__left {
  width: 50%;
  padding: 80px 40px 80px calc((100vw - 1400px) / 2 + 20px);
  display: flex;
  justify-content: flex-end;
}
.page-content__text {
  width: 100%;
  max-width: 700px;
  padding-right: 80px;
}
.page-content__title {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  color: #222222;
  margin-bottom: 24px;
}
.page-content__title strong {
  font-weight: 700;
}
.page-content__text p {
  font-size: 14px;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 16px;
  text-align: justify;
}
.page-content__text p strong {
  color: #222222;
  font-weight: 600;
}
.page-content__text p:last-child {
  margin-bottom: 0;
}
.page-content__right {
  width: 50%;
  background: #8bbf54;
  position: relative;
  padding: 80px 40px;
}
.page-content__accent {
  position: absolute;
  top: -16px;
  right: 0;
  width: 300px;
  height: 26px;
  background: #ffffff;
  z-index: 1;
  border-bottom-left-radius: 5px;
}
.page-content__sidebar {
  width: 100%;
  max-width: 700px;
  position: relative;
  z-index: 2;
}
.page-content--full {
  display: block;
  min-height: 0;
  padding: 80px 0;
}
.page-content--full .page-content__text {
  max-width: none;
  padding-right: 0;
}
.page-content--full .page-content__text > * {
  margin-bottom: 16px;
}
.page-content--full .page-content__text > *:last-child {
  margin-bottom: 0;
}
.page-content--full .page-content__text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222222;
  line-height: 1.2;
  margin-top: 40px;
  margin-bottom: 16px;
}
.page-content--full .page-content__text h3 {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  color: #8bbf54;
  line-height: 1.2;
  margin-top: 40px;
  margin-bottom: 16px;
}
.page-content--full .page-content__text h3::before {
  content: "";
  flex: 0 0 50px;
  height: 5px;
  margin-right: 14px;
  background: #8bbf54;
  border-radius: 5px;
}
.page-content--full .page-content__text h4 {
  font-size: 20px;
  font-weight: 600;
  color: #222222;
  line-height: 1.2;
  margin-top: 24px;
  margin-bottom: 16px;
}
.page-content--full .page-content__text h5 {
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  line-height: 1.2;
  margin-top: 24px;
  margin-bottom: 8px;
}
.page-content--full .page-content__text h6 {
  font-size: 14px;
  font-weight: 600;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-top: 24px;
  margin-bottom: 8px;
}
.page-content--full .page-content__text p {
  font-size: 16px;
  color: #555555;
  line-height: 1.75;
}
.page-content--full .page-content__text p strong {
  color: #222222;
  font-weight: 600;
}
.page-content--full .page-content__text ul,
.page-content--full .page-content__text ol {
  padding-left: 22px;
  color: #555555;
  font-size: 16px;
  line-height: 1.75;
}
.page-content--full .page-content__text ul {
  list-style: disc;
}
.page-content--full .page-content__text ol {
  list-style: decimal;
}
.page-content--full .page-content__text li {
  margin-bottom: 8px;
}
.page-content--full .page-content__text li:last-child {
  margin-bottom: 0;
}
.page-content--full .page-content__text blockquote {
  border-left: 4px solid #8bbf54;
  padding: 16px 24px;
  margin: 24px 0;
  background: #edf4e0;
  border-radius: 0 5px 5px 0;
  color: #555555;
  font-style: italic;
  line-height: 1.75;
}
.page-content--full .page-content__text blockquote p {
  margin-bottom: 0;
}
.page-content--full .page-content__text a {
  color: #222222;
  text-decoration: underline;
  text-decoration-color: #8bbf54;
  text-underline-offset: 3px;
}
.page-content--full .page-content__text a:hover {
  text-decoration-color: #222222;
}
.page-content--full .page-content__text img {
  margin: 24px 0;
  border-radius: 10px;
}
.page-content--full .page-content__text table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  color: #555555;
}
.page-content--full .page-content__text table th,
.page-content--full .page-content__text table td {
  padding: 12px 16px;
  border-bottom: 1px solid #dddddd;
  text-align: left;
}
.page-content--full .page-content__text table th {
  font-weight: 600;
  color: #222222;
  background: #edf4e0;
}
.page-content--full .page-content__text table tr:last-child td {
  border-bottom: none;
}
.page-content--full .page-content__text hr {
  border: none;
  border-top: 1px solid #dddddd;
  margin: 40px 0;
}
.page-content--full .page-content__text > *:first-child {
  margin-top: 0;
}
.treatment-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}
.treatment-nav__item {
  display: block;
  padding: 16px 24px;
  background: #ffffff;
  border: none;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #222222;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.treatment-nav__item:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #222222;
}
.story-single .hero-card__deck {
  max-width: 860px;
}
.story-single .hero-card__inner {
  text-align: left;
  padding: 48px 60px 40px;
}
.story-single__media {
  margin: 0 0 24px;
  max-width: 520px;
}
.story-single__image {
  height: 320px;
  background-color: #C8C8C8;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 20px 46px rgba(34, 34, 34, 0.14);
}
.story-single__content {
  color: #555555;
}
.story-single__content > * {
  margin-bottom: 16px;
}
.story-single__content > *:last-child {
  margin-bottom: 0;
}
.story-single__content p,
.story-single__content li {
  font-size: 14px;
  line-height: 1.75;
}
.story-single__content h2,
.story-single__content h3,
.story-single__content h4 {
  color: #222222;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 24px;
  margin-bottom: 16px;
}
.story-single__content ul,
.story-single__content ol {
  padding-left: 22px;
}
.story-single__content ul {
  list-style: disc;
}
.story-single__content ol {
  list-style: decimal;
}
.story-single__content a {
  color: #222222;
  text-decoration: underline;
}
.story-single__content img {
  margin: 24px 0;
  border-radius: 10px;
}
.story-single__back {
  margin-top: 40px;
  margin-bottom: 0;
}
.faqs {
  position: relative;
  padding: 118px 0 128px;
  overflow: hidden;
}
.faqs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 31%;
  height: 13px;
  background: #edf4e0;
}
.faqs .wrap {
  max-width: 1050px;
}
.faqs__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 42px;
}
.faqs__accent {
  width: 54px;
  height: 5px;
  flex: 0 0 54px;
  border-radius: 5px;
  background: #8bbf54;
}
.faqs__title {
  margin: 0;
  color: #222222;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
}
.faqs__items {
  border-top: 1px solid rgba(34, 34, 34, 0.16);
}
.faqs__item {
  border-bottom: 1px solid rgba(34, 34, 34, 0.16);
}
.faqs__question {
  margin: 0;
}
.faqs__toggle {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 20px 4px;
  border: 0;
  background: transparent;
  color: #222222;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
  transition: color 0.25s ease;
}
.faqs__toggle:hover,
.faqs__toggle:focus {
  color: #5a8930;
}
.faqs__toggle:focus-visible {
  outline: 2px solid #8bbf54;
  outline-offset: -2px;
}
.faqs__question-text {
  flex: 1;
  padding-right: 28px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}
.faqs__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}
.faqs__icon::before,
.faqs__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: #5a8930;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.faqs__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faqs__item.is-open .faqs__toggle {
  color: #5a8930;
}
.faqs__item.is-open .faqs__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faqs__answer {
  display: none;
}
.faqs__answer-inner {
  max-width: 820px;
  padding: 0 64px 30px 4px;
  color: #555555;
  font-size: 16px;
  line-height: 1.75;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .faqs {
    padding: 78px 0 84px;
  }
  .faqs__heading {
    margin-bottom: 32px;
  }
  .faqs__toggle {
    min-height: 76px;
  }
}
@media all and (max-width: 767px) {
  .faqs {
    padding: 54px 0 62px;
  }
  .faqs::before {
    width: 46%;
    height: 8px;
  }
  .faqs__heading {
    gap: 12px;
    margin-bottom: 24px;
  }
  .faqs__accent {
    width: 38px;
    height: 4px;
    flex-basis: 38px;
  }
  .faqs__title {
    font-size: 28px;
  }
  .faqs__toggle {
    min-height: 68px;
    padding: 16px 2px;
  }
  .faqs__question-text {
    padding-right: 18px;
    font-size: 16px;
  }
  .faqs__icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
  .faqs__answer-inner {
    padding: 0 4px 24px 2px;
    font-size: 14px;
    line-height: 1.7;
  }
}
.diag-steps__item {
  display: flex;
  min-height: 480px;
}
.diag-steps__item--text-only .diag-steps__text-col,
.diag-steps__item--image-only .diag-steps__image-col {
  width: 100%;
}
.diag-steps__text-col {
  width: 50%;
  display: flex;
  padding: 80px 40px;
}
.diag-steps__text-inner {
  width: 100%;
  max-width: 700px;
}
.diag-steps__heading {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.diag-steps__number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  background: #8bbf54;
  border-radius: 10px;
  font-size: 36px;
  font-weight: 700;
  color: #222222;
  flex-shrink: 0;
  margin-top: 4px;
}
.diag-steps__title {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  color: #222222;
}
.diag-steps__title strong {
  font-weight: 700;
}
.diag-steps__text-inner p {
  font-size: 14px;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 16px;
  text-align: justify;
}
.diag-steps__text-inner p strong {
  color: #222222;
  font-weight: 600;
}
.diag-steps__text-inner p:last-child {
  margin-bottom: 0;
}
.diag-steps__image-col {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.diag-steps__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-color: #edf4e0;
}
.diag-steps__item:nth-child(odd) .diag-steps__text-col {
  background: #edf4e0;
}
@media all and (min-width: 990px) {
  .diag-steps__item:not(.diag-steps__item--reversed) .diag-steps__text-col {
    justify-content: flex-end;
    padding-right: 60px;
    padding-left: calc((100vw - 1400px) / 2 + 20px);
  }
  .diag-steps__item--reversed .diag-steps__text-col {
    justify-content: flex-start;
    padding-left: 60px;
    padding-right: calc((100vw - 1400px) / 2 + 20px);
  }
}
.tumor-intro {
  display: flex;
  position: relative;
  align-items: flex-start;
  overflow: visible;
  background: #ffffff;
  padding-bottom: 80px;
}
.tumor-intro--left-only .tumor-intro__left {
  width: 100%;
  padding-right: calc((100vw - 1400px) / 2 + 20px);
}
.tumor-intro--right-only .tumor-intro__right {
  width: 100%;
  padding-left: calc((100vw - 1400px) / 2 + 20px);
}
.tumor-intro--right-only .tumor-intro__right::before {
  left: calc((100vw - 1400px) / 2 + 20px);
}
.tumor-intro__left {
  width: 42%;
  position: relative;
  z-index: 5;
  padding-left: calc((100vw - 1400px) / 2 + 20px);
  padding-right: 28px;
}
.tumor-intro__card {
  position: relative;
  margin-top: -82px;
  padding-bottom: 36px;
}
.tumor-intro__card .hero-card__deck {
  position: relative;
  max-width: 520px;
}
.tumor-intro__card .hero-card__deck::before {
  content: "";
  position: absolute;
  left: 48px;
  right: 42px;
  bottom: -18px;
  height: 34px;
  background: rgba(139, 191, 84, 0.24);
  box-shadow: 0 18px 38px rgba(139, 191, 84, 0.26);
}
.tumor-intro__card .hero-card__deck.hero-card__deck--accented::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 160px;
  height: 10px;
  background: #8bbf54;
  border-radius: 4px;
  transform: translateX(-50%);
  z-index: 3;
}
.tumor-intro__card .hero-card__inner {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 42px 44px 30px;
  box-shadow: 0 26px 60px rgba(32, 32, 32, 0.12);
}
.tumor-intro__card .hero-card__lead {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 20px;
  color: #222222;
}
.tumor-intro__card .hero-card__inner p {
  font-size: 15px;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 18px;
}
.tumor-intro__card .hero-card__inner p:last-child {
  margin-bottom: 0;
}
.tumor-intro__text {
  position: relative;
  margin-top: 44px;
  max-width: 520px;
}
.tumor-intro__text::before {
  content: "";
  position: absolute;
  left: calc(-1 * ((100vw - 1400px) / 2));
  bottom: 0;
  width: calc(((100vw - 1400px) / 2) - 40px);
  height: 70px;
  background: rgba(139, 191, 84, 0.2);
}
.tumor-intro__title {
  position: relative;
  z-index: 1;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  color: #222222;
  margin-bottom: 20px;
}
.tumor-intro__title strong {
  font-weight: 700;
}
.tumor-intro__text p {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
}
.tumor-intro__right {
  width: 58%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 52px calc((100vw - 1400px) / 2 + 20px) 0 30px;
}
.tumor-intro__right::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 200px;
  right: 0;
  height: 26px;
  background: #8bbf54;
  z-index: 4;
}
.tumor-intro__diagram {
  width: 100%;
  max-width: 760px;
  position: relative;
  z-index: 2;
  margin-left: auto;
}
.tumor-intro__diagram img {
  width: 100%;
  height: auto;
}
@keyframes tumorPointWave {
  0%,
  12% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35);
  }
  22% {
    opacity: 0.48;
    transform: translate(-50%, -50%) scale(0.75);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.2);
  }
}
.tumor-anatomy {
  position: relative;
  max-width: 760px;
}
.tumor-anatomy__stage {
  position: relative;
}
.tumor-anatomy img {
  position: relative;
  z-index: 1;
}
.tumor-anatomy__points {
  position: absolute;
  z-index: 7;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.tumor-anatomy__point {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 4;
  outline: none;
  pointer-events: auto;
}
.tumor-anatomy__point::before,
.tumor-anatomy__point::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(139, 191, 84, 0.6);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.35);
  box-shadow: 0 0 0 5px rgba(139, 191, 84, 0.12);
}
.tumor-anatomy__point::before {
  animation: tumorPointWave 3.2s linear infinite;
}
.tumor-anatomy__point::after {
  animation: tumorPointWave 3.2s linear infinite;
  animation-delay: 0.55s;
}
.tumor-anatomy__point:hover,
.tumor-anatomy__point:focus,
.tumor-anatomy__point.is-active {
  z-index: 8;
}
.tumor-anatomy__point:hover .tumor-anatomy__dot,
.tumor-anatomy__point:focus .tumor-anatomy__dot,
.tumor-anatomy__point.is-active .tumor-anatomy__dot {
  background: #5a8930;
  box-shadow: 0 0 0 7px rgba(139, 191, 84, 0.28), 0 8px 22px rgba(90, 137, 48, 0.44);
  transform: scale(1.14);
}
.tumor-anatomy__point:hover .tumor-anatomy__label,
.tumor-anatomy__point:focus .tumor-anatomy__label,
.tumor-anatomy__point.is-active .tumor-anatomy__label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scaleX(1);
}
.tumor-anatomy__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #8bbf54;
  box-shadow: 0 0 0 5px rgba(139, 191, 84, 0.18), 0 6px 16px rgba(34, 34, 34, 0.2);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.tumor-anatomy__label {
  position: absolute;
  top: 50%;
  z-index: 1;
  min-width: 148px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-left: 4px solid #8bbf54;
  box-shadow: 0 14px 36px rgba(34, 34, 34, 0.16);
  color: #222222;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) scaleX(0.72);
  transform-origin: left center;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}
.tumor-anatomy__label::before {
  content: "";
  position: absolute;
  top: 50%;
  z-index: -1;
  width: 48px;
  height: 2px;
  background: #8bbf54;
}
.tumor-anatomy__point--right .tumor-anatomy__label {
  left: 58px;
}
.tumor-anatomy__point--right .tumor-anatomy__label::before {
  left: -49px;
}
.tumor-anatomy__point--left .tumor-anatomy__label {
  right: 58px;
  transform-origin: right center;
}
.tumor-anatomy__point--left .tumor-anatomy__label::before {
  right: -49px;
}
.tumor-anatomy__info {
  position: absolute;
  z-index: 5;
  left: 24px;
  bottom: 24px;
  width: 320px;
  max-width: calc(100% - 48px);
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.96);
  border-left: 5px solid #8bbf54;
  box-shadow: 0 18px 42px rgba(34, 34, 34, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}
.tumor-anatomy__info.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.tumor-anatomy__info-title {
  display: block;
  margin-bottom: 6px;
  color: #222222;
  font-size: 15px;
  line-height: 1.25;
}
.tumor-anatomy__info-text {
  display: block;
  color: #555555;
  font-size: 12px;
  line-height: 1.55;
}
.tumor-anatomy__info-link {
  display: none;
  margin-top: 8px;
  color: #5a8930;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}
.tumor-anatomy__info-link:hover {
  color: #222222;
  text-decoration: underline;
}
.tumor-grid {
  padding: 88px 0 98px;
  background: linear-gradient(180deg, rgba(139, 191, 84, 0.28) 0%, rgba(139, 191, 84, 0.18) 52%, rgba(139, 191, 84, 0.24) 100%);
  position: relative;
}
.tumor-grid .wrap {
  max-width: 948px;
}
.tumor-grid__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.tumor-grid__card {
  display: block;
  min-height: 100%;
  padding: 20px 26px 18px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 20px 46px rgba(34, 34, 34, 0.14);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tumor-grid__card:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(34, 34, 34, 0.18);
}
.tumor-grid__card:hover .tumor-grid__image {
  box-shadow: none;
}
.tumor-grid__image {
  height: 150px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  background: #edf4e0;
}
.tumor-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tumor-grid__name {
  font-size: 16px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
  min-height: 38px;
}
.tumor-grid__name span {
  flex: 1;
  min-width: 30px;
  max-width: 74px;
  height: 5px;
  background: #8bbf54;
  border-radius: 999px;
}
.tumor-grid__card p {
  margin: 0;
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
  text-align: left;
}
.stats {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}
.stats::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50px;
  bottom: 50px;
  width: 60px;
  background: rgba(139, 191, 84, 0.3);
}
.stats .wrap {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
.stats__text {
  position: relative;
  width: 32%;
  flex-shrink: 0;
  padding-top: 20px;
}
.stats__text::before {
  content: "";
  position: absolute;
  left: calc(-1 * ((100vw - 1400px) / 2));
  bottom: 0;
  width: calc(((100vw - 1400px) / 2) - 40px);
  height: 70px;
  background: rgba(139, 191, 84, 0.2);
}
.stats__title {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #222222;
}
.stats__title strong {
  font-weight: 700;
}
.stats__text p {
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
}
.stats__graph {
  flex: 1;
}
.stats__legend {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.stats__legend-item {
  font-size: 11px;
  color: #555555;
  display: flex;
  align-items: center;
  gap: 6px;
}
.stats__legend-item::before {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  border-radius: 2px;
}
.stats__legend-item--blue::before {
  background: #4A90D9;
}
.stats__legend-item--red::before {
  background: #E57373;
}
.stats__legend-item--yellow::before {
  background: #FFD54F;
}
.stats__graph-placeholder {
  background: #f8f8f8;
  border: 2px dashed #dddddd;
  border-radius: 10px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 14px;
}
.info-cards {
  padding: 0;
}
.info-cards .wrap {
  display: flex;
  gap: 0;
  padding: 0;
  max-width: 100%;
}
.info-cards__item {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.info-cards__item:first-child .info-cards__content {
  margin-left: auto;
  margin-right: 0;
}
.info-cards__item:nth-child(2) .info-cards__content {
  margin-left: 0;
  margin-right: auto;
  padding-left: 50px;
}
.info-cards__item:nth-child(2) .info-cards__image::after {
  background: rgba(113, 163, 61, 0.65);
}
.info-cards__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.info-cards__image::after {
  content: "";
  position: absolute;
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(139, 191, 84, 0.4);
}
.info-cards__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 50px 40px 50px 20px;
  box-sizing: border-box;
}
.info-cards__title {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 22px;
  color: #222222;
}
.info-cards__title strong {
  font-weight: 700;
}
.info-cards__content p {
  font-size: 14px;
  color: #222222;
  line-height: 1.7;
  margin-bottom: 16px;
}
.info-cards__content p strong {
  font-weight: 600;
}
.info-cards__content .btn {
  margin-top: 8px;
  border-radius: 10px;
}
.info-cards__item:first-child .btn.btn--outline {
  background: #8bbf54;
  color: #ffffff;
  border-color: #8bbf54;
}
.info-cards__item:first-child .btn.btn--outline:hover {
  background: #71a33d;
  border-color: #71a33d;
  color: #ffffff;
}
.info-cards__item:nth-child(2) .btn.btn--outline {
  background: #edf4e0;
  color: #222222;
  border-color: #edf4e0;
}
.info-cards__item:nth-child(2) .btn.btn--outline:hover {
  background: #e2edcd;
  border-color: #e2edcd;
  color: #222222;
}
.stories {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff, #f0f0f0);
}
.stories__heading {
  font-size: 52px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 50px;
  color: #222222;
}
.stories__heading strong,
.stories__heading em {
  font-style: normal;
  font-weight: 700;
}
.stories__grid {
  display: flex;
  gap: 30px;
}
.stories__card {
  display: block;
  flex: 1;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 20px 25px;
  box-shadow: 0 4px 66px rgba(0, 0, 0, 0.16);
  transition: box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.stories__card:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
.stories__image {
  height: 190px;
  background-color: #C8C8C8;
  background-size: cover;
  background-position: center top;
  border-radius: 10px;
  margin-bottom: 24px;
}
.stories__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.stories__name {
  font-size: 18px;
  font-weight: 700;
  color: #222222;
  flex-shrink: 0;
}
.stories__progress {
  flex: 1;
  height: 6px;
  background: transparent;
  border-radius: 3px;
  overflow: hidden;
}
.stories__progress span {
  display: block;
  height: 100%;
  background: #8bbf54;
  border-radius: 3px;
}
.stories__card p {
  font-size: 14px;
  font-style: italic;
  color: #555555;
  line-height: 1.7;
  text-align: left;
}
.hpv {
  position: relative;
  padding: 86px 0 92px;
  overflow: hidden;
  background: #edf4e0;
}
.hpv::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 24%;
  height: 13px;
  background: #ffffff;
}
.hpv__backdrop {
  position: absolute;
  top: 50%;
  right: -20px;
  color: rgba(139, 191, 84, 0.13);
  font-size: 250px;
  font-weight: 800;
  letter-spacing: -18px;
  line-height: 0.7;
  transform: translateY(-50%);
  user-select: none;
}
.hpv .wrap {
  position: relative;
  z-index: 1;
}
.hpv__content {
  max-width: 860px;
}
.hpv__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #5a8930;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.hpv__eyebrow span {
  display: block;
  width: 38px;
  height: 4px;
  background: #8bbf54;
  border-radius: 5px;
}
.hpv__title {
  max-width: 740px;
  margin-bottom: 20px;
  color: #222222;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.15;
}
.hpv__title strong {
  font-weight: 700;
}
.hpv__text {
  max-width: 800px;
  margin: 0 0 26px;
}
.hpv__text p {
  max-width: 730px;
  margin: 0 0 30px;
  color: #555555;
  font-size: 16px;
  line-height: 1.75;
}
.hpv__text ul {
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hpv__text li {
  position: relative;
  flex: 1;
  padding-left: 18px;
  color: #555555;
  font-size: 14px;
  line-height: 1.65;
}
.hpv__text li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8bbf54;
}
.hpv__text li strong {
  display: block;
  color: #222222;
  font-weight: 600;
}
.hpv__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.hpv__link span {
  color: #5a8930;
  font-size: 22px;
  line-height: 1;
  transition: transform 0.25s ease;
}
.hpv__link:hover,
.hpv__link:focus {
  color: #5a8930;
}
.hpv__link:hover span,
.hpv__link:focus span {
  transform: translateX(5px);
}
.hpv__link:focus-visible {
  outline: 2px solid #8bbf54;
  outline-offset: 4px;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .hpv {
    padding: 66px 0 70px;
  }
  .hpv__backdrop {
    right: -32px;
    font-size: 190px;
  }
}
@media all and (max-width: 767px) {
  .hpv {
    padding: 52px 0 56px;
  }
  .hpv::before {
    width: 42%;
    height: 8px;
  }
  .hpv__backdrop {
    top: auto;
    right: -12px;
    bottom: 22px;
    font-size: 122px;
    letter-spacing: -9px;
    transform: none;
  }
  .hpv__eyebrow {
    margin-bottom: 13px;
  }
  .hpv__title {
    margin-bottom: 16px;
    font-size: 27px;
  }
  .hpv__text {
    margin: 0 0 22px;
  }
  .hpv__text p {
    margin-bottom: 24px;
    font-size: 14px;
  }
  .hpv__text ul {
    flex-direction: column;
    gap: 13px;
  }
}
.contact {
  display: flex;
  min-height: 500px;
}
.contact__form-side {
  width: 50%;
  background: #8bbf54;
  padding: 60px 60px 60px calc((100vw - 1400px) / 2 + 20px);
  display: flex;
  align-items: center;
}
.contact__form-inner {
  width: 100%;
  max-width: 580px;
}
.contact__form-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #ffffff;
}
.contact__form input:not([type="checkbox"]),
.contact__form textarea {
  display: block;
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 16px;
  background: #ffffff;
  transition: box-shadow 0.3s ease;
  color: #222222;
}
.contact__form input:not([type="checkbox"])::placeholder,
.contact__form textarea::placeholder {
  color: #999999;
}
.contact__form input:not([type="checkbox"]):focus,
.contact__form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(34, 34, 34, 0.15);
}
.contact__form textarea {
  height: 100px;
  resize: vertical;
}
.contact__form .btn {
  margin-top: 5px;
  background: #ffffff;
  border-color: #ffffff;
  color: #222222;
}
.contact__form .btn:hover {
  background: #f2f2f2;
  border-color: #f2f2f2;
}
.contact__form .acc {
  margin-bottom: 16px;
}
.contact__form .acc .wpcf7-list-item {
  display: block;
  margin: 0;
}
.contact__form .acc label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}
.contact__form .acc input[type="checkbox"] {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  padding: 0;
  margin: 3px 10px 0 0;
  accent-color: #222222;
}
.contact__form .acc .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1.45;
  color: #ffffff;
}
.contact__form .acc a {
  color: #ffffff;
  text-decoration: underline;
}
.contact__form .acc a:hover,
.contact__form .acc a:focus {
  color: #ffffff;
  text-decoration: none;
}
.contact .wpcf7 br {
  display: none;
}
.contact .wpcf7 p {
  margin: 0;
}
.contact__info-side {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.contact__info-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #edf4e0;
  background-size: cover;
  background-position: center;
}
.contact__info-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  min-height: 100%;
  padding: 80px 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.contact__logo {
  margin-bottom: 30px;
}
.contact__logo-img {
  max-width: 200px;
  height: auto;
}
.contact__details {
  margin-bottom: auto;
}
.contact__details p {
  font-size: 14px;
  color: #222222;
  line-height: 1.5;
  margin-bottom: 3px;
}
.contact__phone {
  font-size: 24px !important;
  font-weight: 700;
  color: #222222 !important;
  margin-bottom: 2px !important;
}
.contact__email {
  color: #222222 !important;
  font-weight: 500;
}
.contact__address {
  margin-top: 12px !important;
}
.contact__legal-links {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.contact__legal-item {
  margin-bottom: 5px;
}
.contact__legal-link {
  color: #222222;
  font-size: 11px;
  line-height: 1.4;
  text-decoration: underline;
}
.contact__legal-link:hover,
.contact__legal-link:focus {
  color: #5a8930;
}
.contact__footer-nav {
  padding: 24px 20px;
  background: #edf4e0;
}
.contact__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 42px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.contact__nav-item {
  margin: 0;
}
.contact__nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: #222222;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.contact__nav-link:hover,
.contact__nav-link:focus {
  color: #5a8930;
}
.contact__nav-item--active .contact__nav-link {
  color: #5a8930;
}
.contact__bottom {
  padding: 14px 20px;
  background: #5a8930;
}
.contact__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  max-width: 1400px;
  margin: 0 auto;
}
.contact__copyright {
  margin-top: auto;
  padding-top: 40px;
  font-size: 11px;
  color: #999999;
}
.contact__socials {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
}
.contact__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 16px;
}
.contact__social-link:last-child {
  margin-right: 0;
}
.contact__social-link:hover .contact__social-icon,
.contact__social-link:focus .contact__social-icon {
  opacity: 0.65;
}
.contact__social-icon {
  display: block;
  width: 20px;
  height: 20px;
  transition: opacity 0.3s ease;
}
.contact--no-form .contact__info-side {
  width: 100%;
}
.contact--no-form .contact__info-content {
  max-width: 1400px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.contact--wp-footer {
  display: block;
  min-height: 0;
}
.contact--wp-footer .contact__main {
  display: flex;
  min-height: 500px;
}
.contact--wp-footer .contact__footer-nav {
  padding: 50px 0 54px;
  background: #edf4e0;
}
.contact--wp-footer .contact__footer-nav--temporarily-hidden {
  display: none;
}
.contact--wp-footer .contact__footer-nav .wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 46px;
}
.contact--wp-footer .contact__nav-column {
  min-width: 0;
}
.contact--wp-footer .contact__nav-title {
  position: relative;
  margin: 0;
  padding-bottom: 31px;
  color: #222222;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.contact--wp-footer .contact__nav-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 52px;
  height: 4px;
  border-radius: 2px;
  background: #8bbf54;
}
.contact--wp-footer .contact__nav-list {
  display: block;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.contact--wp-footer .contact__nav-column--without-title .contact__nav-list {
  margin-top: 0;
  padding-top: 76px;
}
.contact--wp-footer .contact__nav-item {
  margin: 0 0 8px;
}
.contact--wp-footer .contact__nav-link {
  display: inline;
  min-height: 0;
  color: #555555;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-decoration: none;
  text-transform: none;
}
.contact--wp-footer .contact__nav-link:hover,
.contact--wp-footer .contact__nav-link:focus {
  color: #5a8930;
  text-decoration: underline;
}
.contact--wp-footer .contact__bottom {
  padding: 14px 20px;
  background: #E8F2DD;
}
.contact--wp-footer .contact__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  max-width: 1400px;
  margin: 0 auto;
}
.contact--wp-footer .contact__copyright {
  margin: 0;
  padding: 0;
  color: #222222;
  line-height: 1.4;
}
.contact--wp-footer .contact__socials {
  gap: 12px;
  margin: 0;
}
.contact--wp-footer .contact__social-link {
  margin: 0;
}
.contact--wp-footer .contact__social-icon {
  filter: none;
}
.contact--wp-footer .contact__legal-links {
  margin: 0;
}
.contact--wp-footer .contact__legal-item {
  margin: 0;
}
.contact--wp-footer .contact__legal-link {
  color: #222222;
}
.contact--wp-footer .contact__legal-link:hover,
.contact--wp-footer .contact__legal-link:focus {
  color: #5a8930;
  text-decoration: none;
}
/* Cookies */
.cc-pc-container {
  border-radius: 10px;
  overflow: hidden;
}
.cc-nb-okagree,
.cc-nb-reject,
.cc-cp-foot-save {
  background-color: #8bbf54 !important;
  color: #fff !important;
  border: none !important;
  transition: all 0.3s ease;
}
.cc-nb-okagree:hover,
.cc-nb-reject:hover,
.cc-cp-foot-save:hover {
  background-color: #5a8930 !important;
  color: #fff !important;
}
.cc-pc-head-lang-select,
.cc-pc-head-lang-select:focus,
.cc-pc-head-lang-select:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cc-cp-foot {
  padding: 20px;
  display: block;
}
.cc-cp-foot:before,
.cc-cp-foot:after {
  content: "";
  display: table;
}
.cc-cp-foot:after {
  clear: both;
}
.cc-cp-foot-save:focus {
  box-shadow: none !important;
}
.freeprivacypolicy-com---pc-dialog div.cc-cp-foot-byline {
  display: none !important;
}
.page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 9999;
  pointer-events: none;
  transition: opacity 0.6s ease-out;
}
.page-overlay.is-hidden {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .page-overlay {
    display: none;
  }
}
@media all and (min-width: 990px) and (max-width: 1200px) {
  .menu {
    gap: 10px;
  }
  .menu__link {
    font-size: 11px;
  }
  .header__cta {
    font-size: 10px;
    padding: 0 16px;
  }
  .header .wrap {
    gap: 16px;
    padding: 0 20px;
  }
  .tumor-anatomy__label {
    display: none;
  }
}
@media all and (min-width: 990px) and (max-width: 1440px) {
  .tumor-intro__left {
    padding-left: 30px;
  }
  .tumor-intro__right {
    padding-right: 30px;
  }
  .tumor-intro__right::before {
    left: 100px;
  }
  .tumor-intro__text::before {
    display: none;
  }
  .tumor-intro--left-only .tumor-intro__left {
    padding-right: 30px;
  }
  .tumor-intro--right-only .tumor-intro__right {
    padding-left: 30px;
  }
  .contact__form-side {
    padding-left: 30px;
  }
  .stats__text::before {
    display: none;
  }
  .page-content__left {
    padding-left: 30px;
  }
  .diag-steps__item:not(.diag-steps__item--reversed) .diag-steps__text-col {
    padding-left: 30px;
  }
  .diag-steps__item--reversed .diag-steps__text-col {
    padding-right: 30px;
  }
}
@media all and (max-width: 989px) {
  .header__nav.is-open {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    padding: 12px 20px;
  }
  .header__nav.is-open .menu {
    gap: 4px;
  }
  .menu {
    align-items: stretch;
  }
  .menu > .menu__item {
    min-height: 42px;
  }
  .menu__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 0;
  }
  .menu__item--active::before {
    left: 0;
    top: 50%;
    margin-left: 0;
    transform: translateY(-50%);
  }
  .menu__item--has-children {
    padding-right: 0;
  }
  .menu__item--has-children::after {
    display: none;
  }
  .menu__link {
    justify-content: flex-start;
    flex: 1 1 auto;
    min-height: 40px;
    padding: 0 8px 0 22px;
    text-align: left;
  }
  .menu__submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 40px;
    padding: 0;
    border: 0;
    background: rgba(139, 191, 84, 0.14);
    cursor: pointer;
  }
  .menu__submenu-toggle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #5a8930;
    border-bottom: 2px solid #5a8930;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.25s ease;
  }
  .menu__item.is-submenu-open > .menu__submenu-toggle::before {
    transform: translateY(2px) rotate(225deg);
  }
  .menu .sub-menu {
    position: static;
    display: none;
    flex: 0 0 100%;
    width: 100%;
    margin: 2px 0 6px;
    padding: 6px 0 6px 14px;
    background: rgba(237, 244, 224, 0.72);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .menu .sub-menu::before {
    display: none;
  }
  .menu .sub-menu .menu__item {
    display: flex;
  }
  .menu .sub-menu .menu__link {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 600;
  }
  .menu .sub-menu .sub-menu {
    margin-left: 0;
    padding-left: 12px;
    transform: none;
  }
  .menu__item:hover > .sub-menu,
  .menu__item:focus-within > .sub-menu,
  .menu .sub-menu .menu__item:hover > .sub-menu,
  .menu .sub-menu .menu__item:focus-within > .sub-menu {
    transform: none;
  }
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .wrap {
    padding: 0 30px;
  }
  .header .wrap {
    display: flex;
    align-items: center;
    height: 70px;
    gap: 15px;
    padding: 0 24px;
  }
  .header__nav {
    display: none;
  }
  .header__hamburger {
    display: flex;
    order: 3;
    margin-left: 0;
  }
  .header__logo {
    min-width: 0;
    flex: 1;
  }
  .header__logo-image {
    width: 160px;
  }
  .header__cta {
    order: 2;
    margin-left: auto;
    font-size: 10px;
    padding: 0 18px;
    height: 36px;
  }
  .hero {
    height: 520px;
    min-height: 520px;
  }
  .hero .wrap {
    padding-top: 140px;
  }
  .hero__content {
    margin-left: 0;
    max-width: 100%;
  }
  .hero__content::before {
    left: -30px;
    right: -30px;
  }
  .hero__title-box {
    padding: 22px 0 16px;
  }
  .hero__title {
    font-size: 38px;
    text-align: left;
  }
  .hero__accent {
    width: 120px;
    height: 5px;
    margin: 14px 0 0;
  }
  .hero-card {
    margin-top: -40px;
  }
  .hero-card .wrap::after {
    display: none;
  }
  .hero-card__deck {
    max-width: 100%;
  }
  .hero-card__deck::before {
    left: 20px;
    right: 20px;
  }
  .hero-card__inner {
    max-width: 100%;
    margin-left: 0;
    padding: 24px 28px;
  }
  .stats {
    padding: 50px 0;
  }
  .stats::after {
    width: 30px;
  }
  .stats .wrap {
    flex-direction: column;
    gap: 30px;
  }
  .stats__text {
    width: 100%;
  }
  .stats__text::before {
    display: none;
  }
  .info-cards .wrap {
    flex-direction: column;
  }
  .info-cards__item {
    min-height: 350px;
  }
  .info-cards__content {
    max-width: 100%;
    padding: 40px 30px;
  }
  .info-cards__item:nth-child(2) .info-cards__content {
    padding-left: 30px;
  }
  .showcase {
    height: 260px;
  }
  .showcase__title {
    font-size: 36px;
    padding-bottom: 40px;
  }
  .showcase__accent {
    width: 250px;
    height: 45px;
  }
  .showcase--tumors .wrap {
    padding-top: 85px;
  }
  .showcase--tumors .showcase__title {
    font-size: 34px;
    line-height: 1.05;
  }
  .stories__grid {
    flex-wrap: wrap;
  }
  .stories__card {
    flex: 0 0 calc(50% - 15px);
  }
  .stories--page .stories__card {
    flex: 0 0 calc(50% - 15px);
  }
  .featured-story {
    flex-direction: column;
  }
  .featured-story__image {
    width: 100%;
    height: 300px;
  }
  .featured-story__content {
    width: 100%;
  }
  .featured-story__inner {
    max-width: 100%;
    padding: 40px 30px;
  }
  .featured-story__accent {
    width: 200px;
    height: 40px;
  }
  .page-content {
    flex-direction: column;
  }
  .page-content__left {
    width: 100%;
    padding: 40px 30px;
  }
  .page-content__text {
    max-width: 100%;
    padding-right: 0;
  }
  .page-content__right {
    width: 100%;
    padding: 40px 30px;
  }
  .page-content__sidebar {
    max-width: 100%;
  }
  .page-content__accent {
    width: 200px;
    height: 40px;
  }
  .page-content--full {
    padding: 50px 0;
  }
  .page-content--full .page-content__text h2 {
    font-size: 30px;
  }
  .page-content--full .page-content__text h3 {
    font-size: 24px;
  }
  .page-content--full .page-content__text h4 {
    font-size: 18px;
  }
  .page-content--full .page-content__text p {
    font-size: 15px;
  }
  .page-content--full .page-content__text ul,
  .page-content--full .page-content__text ol {
    font-size: 15px;
  }
  .page-content--full .page-content__text blockquote {
    font-size: 15px;
  }
  .story-single .hero-card__inner {
    padding: 40px 30px;
  }
  .story-single__image {
    height: 280px;
  }
  .diag-steps__item {
    flex-direction: column;
    min-height: auto;
  }
  .diag-steps__item--reversed {
    flex-direction: column-reverse;
  }
  .diag-steps__text-col {
    width: 100%;
    padding: 40px 30px;
  }
  .diag-steps__text-inner {
    max-width: 100%;
  }
  .diag-steps__image-col {
    width: 100%;
    height: 300px;
  }
  .tumor-intro {
    flex-direction: column;
  }
  .tumor-intro__left {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .tumor-intro__card {
    margin-top: -30px;
  }
  .tumor-intro__card .hero-card__deck {
    max-width: 100%;
  }
  .tumor-intro__right {
    width: 100%;
    padding: 40px 30px;
  }
  .tumor-intro__right::before {
    display: none;
  }
  .tumor-intro__text {
    margin-top: 0;
  }
  .tumor-intro__text::before {
    display: none;
  }
  .tumor-anatomy {
    margin: 0 auto;
  }
  .tumor-anatomy__label {
    display: none;
  }
  .tumor-anatomy__info {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-top: 18px;
  }
  .tumor-grid {
    padding: 60px 0 72px;
  }
  .tumor-grid .wrap {
    max-width: 100%;
  }
  .tumor-grid__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .tumor-grid__card {
    padding: 18px 20px 16px;
  }
  .tumor-grid__image {
    height: 140px;
  }
  .contact__main {
    flex-direction: column;
    min-height: 0;
  }
  .contact__form-side {
    width: 100%;
    padding: 50px 30px;
  }
  .contact__form-inner {
    max-width: 580px;
  }
  .contact__info-side {
    width: 100%;
    min-height: 400px;
  }
  .contact__info-content {
    max-width: 100%;
    padding: 40px 30px;
  }
  .contact--wp-footer .contact__main {
    min-height: 0;
  }
  .contact--wp-footer .contact__info-side {
    min-height: 0;
  }
  .contact__footer-nav {
    padding: 22px 30px;
  }
  .contact__nav-list {
    gap: 10px 28px;
  }
  .contact--wp-footer .contact__footer-nav {
    padding: 42px 0 46px;
  }
  .contact--wp-footer .contact__footer-nav .wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 30px;
  }
}
@media all and (max-width: 767px) {
  .wrap {
    padding: 0 20px;
  }
  .header .wrap {
    display: flex;
    align-items: center;
    height: 60px;
    gap: 12px;
    padding: 0 16px;
  }
  .header__logo {
    min-width: 0;
    flex: 1;
  }
  .header__logo-image {
    width: 140px;
  }
  .header__nav {
    display: none;
  }
  .header__cta {
    display: none;
  }
  .header__hamburger {
    display: flex;
    margin-left: auto;
  }
  .hero {
    height: 520px;
    min-height: 520px;
  }
  .hero::after {
    width: 48%;
    height: 14px;
  }
  .hero .wrap {
    padding-top: 90px;
    padding-bottom: 100px;
  }
  .hero__content {
    margin-left: 0;
    max-width: 100%;
  }
  .hero__content::before {
    left: -20px;
    right: -20px;
  }
  .hero__title-box {
    padding: 14px 0 12px;
  }
  .hero__title {
    font-size: 26px;
    letter-spacing: normal;
    text-align: left;
  }
  .hero__accent {
    width: 70px;
    height: 4px;
    margin: 10px 0 0;
  }
  .hero-card {
    margin-top: 0;
    padding-bottom: 40px;
  }
  .hero-card .wrap::after {
    display: none;
  }
  .hero-card__deck::before {
    left: 12px;
    right: 12px;
    bottom: -10px;
    height: 20px;
  }
  .hero-card__inner {
    max-width: 100%;
    margin-left: 0;
    padding: 20px;
  }
  .hero-card__lead {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .hero-card__inner p {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .stats {
    padding: 40px 0 50px;
  }
  .stats::after {
    display: none;
  }
  .stats .wrap {
    flex-direction: column;
    gap: 24px;
  }
  .stats__text {
    width: 100%;
  }
  .stats__text::before {
    display: none;
  }
  .stats__title {
    font-size: 24px;
  }
  .stats__legend {
    justify-content: flex-start;
  }
  .stats__graph-placeholder {
    height: 220px;
  }
  .info-cards .wrap {
    flex-direction: column;
  }
  .info-cards__item {
    min-height: 300px;
  }
  .info-cards__content {
    max-width: 100%;
    padding: 25px 20px;
  }
  .info-cards__title {
    font-size: 24px;
  }
  .info-cards__item:nth-child(2) .info-cards__content {
    padding-left: 20px;
  }
  .showcase {
    height: 180px;
  }
  .showcase__title {
    font-size: 28px;
  }
  .showcase__accent {
    width: 160px;
    height: 35px;
  }
  .showcase--tumors .wrap {
    padding-top: 85px;
  }
  .showcase--tumors .showcase__title {
    font-size: 24px;
    line-height: 1.08;
  }
  .featured-story {
    flex-direction: column;
  }
  .featured-story__image {
    width: 100%;
    height: 250px;
  }
  .featured-story__content {
    width: 100%;
  }
  .featured-story__inner {
    max-width: 100%;
    padding: 30px 20px;
  }
  .featured-story__accent {
    width: 140px;
    height: 30px;
  }
  .page-content {
    flex-direction: column;
  }
  .page-content__left {
    width: 100%;
    padding: 30px 20px;
  }
  .page-content__text {
    max-width: 100%;
    padding-right: 0;
  }
  .page-content__right {
    width: 100%;
    padding: 30px 20px;
  }
  .page-content__sidebar {
    max-width: 100%;
  }
  .page-content__accent {
    width: 140px;
    height: 30px;
  }
  .page-content__title {
    font-size: 24px;
  }
  .page-content--full {
    padding: 30px 0;
  }
  .page-content--full .page-content__text h2 {
    font-size: 24px;
    margin-top: 28px;
  }
  .page-content--full .page-content__text h3 {
    font-size: 20px;
    margin-top: 28px;
  }
  .page-content--full .page-content__text h4 {
    font-size: 17px;
  }
  .page-content--full .page-content__text h5 {
    font-size: 15px;
  }
  .page-content--full .page-content__text h6 {
    font-size: 13px;
  }
  .page-content--full .page-content__text p {
    font-size: 14px;
  }
  .page-content--full .page-content__text ul,
  .page-content--full .page-content__text ol {
    font-size: 14px;
    padding-left: 18px;
  }
  .page-content--full .page-content__text blockquote {
    font-size: 14px;
    padding: 12px 16px;
  }
  .page-content--full .page-content__text table {
    font-size: 13px;
  }
  .page-content--full .page-content__text table th,
  .page-content--full .page-content__text table td {
    padding: 10px 12px;
  }
  .story-single .hero-card__inner {
    padding: 30px 20px;
  }
  .story-single__image {
    height: 220px;
  }
  .diag-steps__item {
    flex-direction: column;
    min-height: auto;
  }
  .diag-steps__item--reversed {
    flex-direction: column-reverse;
  }
  .diag-steps__text-col {
    width: 100%;
    padding: 30px 20px;
  }
  .diag-steps__text-inner {
    max-width: 100%;
  }
  .diag-steps__image-col {
    width: 100%;
    height: 250px;
  }
  .diag-steps__number {
    min-width: 42px;
    height: 42px;
    font-size: 24px;
  }
  .diag-steps__title {
    font-size: 24px;
  }
  .tumor-intro {
    flex-direction: column;
  }
  .tumor-intro__left {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .tumor-intro__card {
    margin-top: 0;
    padding-bottom: 30px;
  }
  .tumor-intro__card .hero-card__deck {
    max-width: 100%;
  }
  .tumor-intro__card .hero-card__inner {
    padding: 20px;
  }
  .tumor-intro__card .hero-card__lead {
    font-size: 15px;
  }
  .tumor-intro__right {
    width: 100%;
    padding: 30px 20px;
  }
  .tumor-intro__right::before {
    display: none;
  }
  .tumor-intro__text {
    margin-top: 0;
    padding-bottom: 40px;
  }
  .tumor-intro__text::before {
    display: none;
  }
  .tumor-intro__title {
    font-size: 24px;
  }
  .tumor-anatomy {
    margin: 0 auto;
  }
  .tumor-anatomy__point {
    width: 28px;
    height: 28px;
  }
  .tumor-anatomy__dot {
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
  }
  .tumor-anatomy__label {
    display: none;
  }
  .tumor-anatomy__info {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-top: 16px;
    padding: 15px 16px;
  }
  .tumor-grid {
    padding: 40px 0 54px;
  }
  .tumor-grid__items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tumor-grid__card {
    padding: 16px;
  }
  .tumor-grid__image {
    height: 150px;
  }
  .tumor-grid__name {
    min-height: 0;
  }
  .stories {
    padding: 50px 0;
  }
  .stories__heading {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .stories__grid {
    flex-direction: column;
    gap: 20px;
  }
  .contact__main {
    flex-direction: column;
    min-height: 0;
  }
  .contact__form-side {
    width: 100%;
    padding: 30px 20px;
  }
  .contact__form-inner {
    max-width: 100%;
  }
  .contact__form-title {
    font-size: 22px;
  }
  .contact__info-side {
    width: 100%;
    min-height: 350px;
  }
  .contact__info-content {
    max-width: 100%;
    padding: 30px 20px;
  }
  .contact--wp-footer .contact__main {
    min-height: 0;
  }
  .contact--wp-footer .contact__info-side {
    min-height: 0;
  }
  .contact__phone {
    font-size: 18px !important;
  }
  .contact__footer-nav {
    padding: 20px;
  }
  .contact__nav-list {
    flex-direction: column;
    gap: 4px;
  }
  .contact__nav-link {
    justify-content: center;
    min-height: 34px;
  }
  .contact__bottom {
    padding: 16px 20px;
  }
  .contact__bottom-inner {
    flex-direction: column;
    gap: 10px;
  }
  .contact--wp-footer .contact__footer-nav {
    padding: 34px 0 38px;
  }
  .contact--wp-footer .contact__footer-nav .wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact--wp-footer .contact__nav-title {
    padding-bottom: 14px;
    font-size: 17px;
  }
  .contact--wp-footer .contact__nav-list {
    margin-top: 14px;
  }
  .contact--wp-footer .contact__nav-column--without-title {
    margin-top: -28px;
  }
  .contact--wp-footer .contact__nav-column--without-title .contact__nav-list {
    margin-top: 0;
    padding-top: 0;
  }
  .contact--wp-footer .contact__bottom {
    padding: 16px 20px;
  }
  .contact--wp-footer .contact__bottom-inner {
    flex-direction: column;
    gap: 10px;
  }
}
