/* Variables */
:root {
  --bg-color: #FFFFEE;
  --montserrat: "Montserrat", sans-serif;
  --nav__link_color: #161618
}

/* Body */
body {
  min-width: 320px;
  background: var(--bg-color);
}

/* Container */
.container {
  margin: 0 auto;
  padding: 0px 100px;
  width: 100%;
  box-sizing: border-box;
  min-width: 1280px;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  width: 100%;
}

/* nav__logo{} */
.nav__list-container {
  display: flex;
  align-items: center;
  width: 576px;
  /* gap: 36 */
  gap: 3px;
}

.nav__list>a {
  text-decoration: none;
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 18px;
  color: var(--nav__link_color);
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav__list>a:hover {
  background-color: #F6F958;
}

.nav__btn {
  font-family: var(--montserrat);
  border: none;
  background-color: #F6F958;
  border-radius: 12px;
  padding: 16px 32px;
  cursor: pointer;
  font-weight: 500;
  font-size: 24px;
  transition: all 0.3s ease;
}

.lang-select {
  font-family: var(--montserrat);
  font-size: 16px;
  padding: 8px 24px 8px 12px;
  border-radius: 12px;
  background-color: transparent;
  color: var(--nav__link_color);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  appearance: none;
  /* убираем дефолтную стрелку */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../images/lang.svg");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px;

}

.lang-select option {
  border: none;
}

.lang-select:hover {
  background-color: #F6F958;
}

.lang-select:focus {
  outline: none;
}

.footer_lang-select {
  background-image: url("../images/lang-white.svg");
}

/* Hero Section */
.hero__section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  gap: 20px;
  width: 100%;
}

.hero__left_block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  /* width: 45%; */
  width: 607px;
  min-width: 320px;
  max-width: 637px;
}

.hero__right_block {
  max-width: 697px;
  border-radius: 32px;
  background: #161618;
}

.hero__right_block img {
  width: 620px;
}

.hero__right_block-img-mobile {
  display: none;
}

.hero__title {
  text-transform: uppercase;
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 42px;
  color: #161618;
  line-height: 140%;
}

.hero__description {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #313131;
  width: 607px;
  /* padding-top: 24px; */
}

.hero__buttons {
  display: flex;
  gap: 24px;
  /* padding-top: 32px; */
}

.hero__buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 2px solid #a6a6a6;
  /* padding: 12px 53px; */
  border-radius: 12px;
  gap: 24px;
  height: 75.6px;
  width: 306px;
  cursor: pointer;
}

.hero__buttons button.active {
  background-color: #F6F958;
}

.hero__buttons a img {
  width: 306px;
  height: 76px;
}

.button__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.button__item p {
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: #313131;
  text-align: left;
}

.section__title {
  margin-top: 60px;
  margin-bottom: 32px;
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 42px;
  line-height: 140%;
  text-transform: uppercase;
  color: #161618;
  width: 823px;
}

.feature__section {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 480px;
  border-radius: 32px;
  padding: 32px;
  background-color: #161618;
  box-sizing: border-box;
  justify-content: space-between;
  margin-top: 32px;
}

.feature__left_block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 666px;
  position: relative;
  z-index: 2;
}

.wrapp {
  width: 100%;
  max-width: 700px;
  min-width: min(600px, 100%);
}

.feature__title {
  font-family: var(--montserrat);
  font-weight: 600;
  line-height: 140%;
  font-size: clamp(28px, 3vw, 32px);
  text-transform: uppercase;
  color: #ffffff;
}

.feature__title span {
  color: #f6f958;
}

.feature__description {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #cdcdcd;
  padding-top: 13px;
  width: 574px;
}

/* .feature__right_block {
  position: relative;
  width: 100%;
  max-width: 580px;
  flex-shrink: 0;
} */

.feature__images {
  position: relative;
  width: 100%;
  margin-top: auto;
  min-height: 264px;
}

.feature__images img:first-child {
  position: absolute;
  bottom: -48px;
  left: 0;
  height: auto;
}

.feature__images img:last-child {
  position: absolute;
  width: auto;
  height: auto;
  left: 170px;
  bottom: -245px;
}

.feature__right_block img {
  position: absolute;
  height: 678px;
  top: -49px;
  right: -62px;
  width: 103%;
}

.problem1 {
  min-height: 433px;
}

.problem2 {
  margin-top: 80px;
}

.problem3-img {
  display: none;
}

.feature__section.problem2 .feature__images img:first-child {
  width: min(430px, 100%);
}

.feature__section.problem2 .feature__images img:last-child {
  position: absolute;
  bottom: 77px;
  left: min(393px, 70%);
}

.feature__section.problem2 .feature__right_block img {
  top: -45px;
  right: 0px;
  width: 1362px;
  height: auto;
  object-fit: contain;
}

/* @media (max-width: 1400px) {
  .feature__section {
    padding: 32px;
  }

  .feature__images img:last-child {
    left: min(209px, 40%);
  }

  .feature__right_block img {
    right: -50px;
  }
} */

.feature__section.problem3 {
  /* height: 510px; */
  margin-top: 80px;
}

.feature__section.problem3 .feature__images img:first-child {
  bottom: 32px;
}

.feature__section.problem3 .feature__images img:last-child {
  bottom: 45px;
  left: 493px;
  width: 176px;
}

.feature__section.problem3 .feature__right_block img {
  /* bottom: 32px; */
  height: 465px;
  top: 15px;
  width: 1279px;
  left: 38px;
}


.feature__section.problem3 .feature__title {
  width: 106%;
}

.feature__section.problem3 .feature__description {
  width: 611px;
  font-size: 17px;
}

.feature__img-mobile {
  display: none;
  width: 100%;
}

.health__section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 95%;
  background-color: #161618;
  padding: 32px;
  border-radius: 32px;
  margin-top: 32px;
}

.health__title {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 42px;
  line-height: 140%;
  color: #ffffff;
  text-transform: uppercase;
}

.health__line {
  width: 100%;
  border: 1px solid #555555;
}

.health__block,
.health__section .health__block.third {
  display: flex;
  justify-content: space-between;
  align-items: self-start;
  /* margin-bottom: 40px; */
}

.health__block_left_side {
  display: flex;
  align-items: center;
}

.health__section .health__block.third .health__block_left_side_wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.health__section .health__block.third .health__block_left_side_wrap div {
  display: flex;
}

.health-img-mobile {
  display: none;
}

.health__block_left_side img {
  box-shadow: 0 0 4px 0 #f6f958;
  background: #f6f958;
  border-radius: 100px;
}
.health__block_left_side svg {
  box-shadow: 0 0 4px 0 #f6f958;
  background: #f6f958;
  border-radius: 100px;
  min-width: 100px;
  min-height: 100px;
}
.health__block_left_side svg {
  box-shadow: 0 0 4px 0 #f6f958;
  background: #f6f958;
  border-radius: 100px;
}

.health__block_left_side img.fiolet {
  box-shadow: 0 12px 32px 0 rgba(141, 2, 189, 0.25);
}
.health__block_left_side svg.fiolet {
  box-shadow: 0 12px 32px 0 rgba(141, 2, 189, 0.25);
}

.result__block img {
  box-shadow: 0 0 4px 0 #f6f958;
  width: 100px;
  background: #f6f958;
  border-radius: 100px;
}


.health__block_left_side_text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-left: 24px;
}

.health__block_img__title {
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 28px;
  line-height: 140%;
  color: #ffffff;
}

.health__block_img__description {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #cdcdcd;
}

.health__line:not(1) {
  display: none;
}

.health__line {
  display: none;
}

.health__line.active {
  display: block;
  margin-top: 12px;
}

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

.result__block.last-child {
  justify-content: center;
  width: calc(100% - 40px);
}

.result__block {
  display: flex;
  border-radius: 20px;
  gap: 20px;
  padding: 50px 20px;
  background-color: #161618;
  align-items: center;
  width: 50%;
}

.result__block-num {
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 32px;
  text-align: center;
  color: #000;
  min-width: 100px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 10px 0 #f6f958;
  background: #f6f958;
  border-radius: 100px;
}

.result__section:last-child {
  width: 1384px;
}

.result__block .item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result__block .item h3 {
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 28px;
  line-height: 140%;
  color: #ffffff;
}

.result__block .item p {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #cdcdcd;
}

.flex {
  display: flex;
  gap: 24px;
}

.download__section {
  background-color: #161618;
  border-radius: 20px;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 185px;
}


.download__section a img {
  margin-top: 15px;
  width: 655px;
}

.download__section .download-desktop1 {
  margin-top: 24px;
  margin-left: 20px;
}

.download__section .download__section-img-first {
  margin-top: 16px;
}

.footer {
  width: 100%;
  border-radius: 32px;
  background-color: #161618;
  padding: 24px 0px;
  margin-top: 60px;
}

.footer__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__list {
  display: flex;
  align-items: center;
  width: 576px;
  /* gap: 36 */
  gap: 3px;
}

.footer__list li a {
  text-decoration: none;
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer__nav_btn {
  border-radius: 12px;
  background-color: #F6F958;
  padding: 20px 36px;
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #161618;
  text-decoration: none;
}

.footer_lang-select {
  color: #FFFFEE;
}

.footer_lang-select:hover {
  color: #161618;
}



.footer__list li a:hover {
  background-color: #F6F958;
  color: #161618;
}

.result__line {
  display: none;
  width: 100%;
  border: 1px solid #555555;
}

.mobile {
  display: none;
}

.feature__description.second {
  display: none;
}

.health-img-desktop {
  width: 75%;
  margin-left: auto;
  display: block;
}

.lang-switch{
  position: relative;
  cursor: pointer;
}
.lang-switch-footer .lang-switch__title{
  color: #FFFFFF;  
  background-image: url("../images/lang-white.svg");
}
.lang-switch__title{
  font-family: var(--montserrat);
font-weight: 500;
font-size: 18px;
line-height: 100%;
color: #161618;
  background-image: url("../images/lang.svg");
  background-repeat: no-repeat;
  background-position: right 0px center;
  background-size: 12px;
  padding-right: 18px;
}




.lang-switch-list {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background-color: #161618;
  border-radius: 4px;
  display: none;
  flex-direction: column;
  z-index: 10;
}
.lang-switch-footer .lang-switch-list {
  top: unset;
  bottom: calc(100% + 10px);
}

.lang-switch-list.active{
  display: flex;
}

.lang-switch-list a {
  padding: 2px 10px;
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #cdcdcd;
  text-decoration: none;
}

.lang-switch-list a:hover {
  background-color: #F6F958;
  color: #161618;
}

@media (max-width: 1580px) {
  .container {
    padding: 0 15px;
    min-width: 1180px;
  }
}

@media (max-width: 1400px) {
  .container {
    padding: 0 15px;
    min-width: 1180px;
  }

  .hero__right_block img {
    width: 480px;
  }

  .feature__section.problem3 .feature__right_block img {
    height: 391px;
    width: auto;
    top: 88px;
    left: 50%;
    transform: translateX(-50%);
  }

  .download__section a img {
    width: 100%;
  }

  .feature__section.problem2 .feature__right_block img {
    height: 567px;
    width: auto;
    top: 32px;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }

  .feature__right_block img {
    width: auto;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    height: 598px;
    top: 5px;
  }
}




/* Для экранов до 540px (маленькие телефоны) */
@media (max-width: 1200px) {
  .feature__section {
    flex-direction: column;
    gap: 40px;
    width: 540px;
  }

  .problem2 {
    margin-top: 0px;
  }

  .feature__left_block,
  .feature__right_block {
    width: 100%;
  }

  .feature__right_block {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }

  .feature__right_block img {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 580px;
  }

  body {
    margin: 0 auto;
  }

  .container {
    padding: 0px;
    max-width: 540px;
    min-width: 320px;
  }

  .navbar {
    background-color: #ffffff;
    border-radius: 20px;
    justify-content: space-between;
    padding: 12px 16px;
    width: auto;
  }

  .nav__logo {
    width: 46px;
  }

  .nav__list-container {
    display: none;
  }

  .hero__section {
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    margin-top: 34px;
  }

  .hero__left_block {
    width: auto;
  }

  .nav__btn {
    color: #161618;
    font-size: 16px;
    padding: 14px 25px;
  }

  .lang-select {
    font-size: 14px;
  }

  .hero__title {
    font-size: 24px;
  }

  .hero__right_block img {
    width: 100%;
  }

  .hero__description {
    font-size: 12px;
    margin-top: 12px;
    width: auto;
  }

  .hero__buttons a {
    width: 50%;
  }

  .hero__buttons a img {
    width: 100%;
    height: auto;
  }

  .hero__right_block-img-mobile {
    display: block;
  }

  .hero__right_block-img-desktop {
    display: none;
  }

  .mobile.active {
    display: block;
  }

  .mobile.inactive {
    display: none;
  }

  .hero__left_block {
    gap: 0px;
    font-size: 24px;
    text-align: left;
    padding-left: 12px;
    padding-right: 12px;
  }


  .hero__buttons {
    gap: 12px;
    margin-top: 16px;
  }


  .download__section p {
    font-size: 12px;
    font-family: var(--montserrat);
    color: #CDCDCD;
    width: 240px;
    line-height: 140%;
    margin-bottom: 12px;
  }

  .download__section {
    background-image: url("../images/download/Group 35905.webp");
    background-repeat: no-repeat;
    background-position: -14px -26px;
    background-size: 110%;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    padding: 24px 16px 36px;
    gap: 0;
    width: calc(100% - 64px);
    height: auto;
    margin: 0px 16px;
  }

  .download__section a img {
    width: 100%;
    z-index: 4;
    margin-top: 12px;
  }

  .health__block_left_side_text {
    margin-left: 0px;
  }

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

  .health__block_left_side img {
    width: 36px;
    height: 36px;
  }
  .health__block_left_side svg {
    min-width: 36px;
    min-height: 36px;
    width: 36px;
    height: 36px;
  }

  .health__block_left_side_text h3 {
    font-size: 12px;
  }

  .health__block_left_side_text p {
    font-size: 12px;
  }

  .footer__list,
  .footer__nav_btn {
    display: none;
  }

  .result__section {
    background-color: #161618;
    width: calc(100% - 64px);
    border-radius: 20px;
    padding: 20px 16px;
    margin: 0px 16px;
    gap: 16px;
  }


  .result__block .item h3 {
    font-size: 14px;
  }

  .result__block .item p {
    width: 261px;
    font-size: 12px;
    line-height: 15px;
  }



  .result__section>.flex {
    flex-direction: column;
    gap: 16px;
  }

  .result__section>.flex .result__block {
    background: none;
  }

  .result__block {
    padding: 0;
    width: 311px;
    gap: 12px;
  }

  .result__section>.flex:nth-child(1)>.result__block:nth-child(1) {
    padding: 4.5px 0;
  }

  .download-desktop {
    display: none;
  }

  .download__section .mobile {
    display: block;
  }

  .result__block-num {
    min-width: 36px;
    min-height: 36px;
    font-size: 14px;
    box-shadow: 0 0 4px 0 f6f958;
  }

  .result__block .item {
    gap: 8px;
  }

  .result__block .item p {
    width: 100%;
  }

  .result__block .item p br {
    display: none;
  }

  .result__block:last-child {
    justify-content: start;
    background: none;
  }

  .section__title {
    width: auto;
    font-size: 24px;
    margin-top: 28px;
    padding-left: 16px;
    margin-bottom: 16px;
    max-width: 360px;
  }

  .problem2,
  .problem3 {
    margin-top: 16px;
  }

  .footer__nav {
    width: 100%;
  }

  .footer_lang-select {
    /* padding: 8px 12px; */
    border-radius: 12px;
    background-color: transparent;
    color: #FFFFEE;
    cursor: pointer;
    margin-right: 30px;
    transition: all 0.3s ease;
    border: none;
  }

  .health__block_left_side,
  .health__title {
    position: relative;
    z-index: 1;
  }

  .health-for-bg1 {
    position: relative;
  }

  .health-for-bg1 img {
    position: relative;
    z-index: 1;
  }

  .health-for-bg2 {
    position: relative;
  }

  .health-for-bg2 img {
    position: relative;
    z-index: 1;
  }

  .health-for-bg1::after {
    position: absolute;
    content: "";
    height: 310px;
    width: 360px;
    background-image: url("../images/health/item/Group 35896.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    top: -71px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;

  }

  .health-for-bg2::after {
    position: absolute;
    content: "";
    height: 310px;
    width: 360px;
    background-image: url("../images/health/item/Group 35896.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    top: -71px;
    left: -130px;
    z-index: 0;
  }

  .footer {
    padding: 12px 16px;
    width: auto;
    border-radius: 20px;
    margin-top: 30px;
  }

  .footer__nav {
    width: auto;
  }

  .footer_lang-select {
    margin-right: 0;
  }

  .health__title {
    font-size: 29px;
    margin-top: 20px;
    font-weight: 600;
  }

  .feature__section {
    margin-top: 0;
    gap: 12px;
    height: auto;
    width: 100%;
    padding: 20px 16px;
  }

  .feature__title {
    font-size: 16px;
    max-width: 220px;
  }

  .feature__section.problem2 {
    margin-top: 16px;
  }

  .problem1 .first {
    width: calc(100% - 50px);
  }

  .feature__section.problem3 .feature__description {
    width: 497px;
  }

  .feature__section.problem2 .feature__description {
    margin-bottom: 20px;
    font-size: 12px;
    max-width: 300px;
  }

  .feature__section.problem1 .feature__description {
    margin-top: 0;
    padding-top: 0;
    font-size: 10px;
    width: 294px;
    margin-bottom: 8px;
    position: relative;
  }

  .feature__img-mobile {
    display: block;
  }

  .feature__title-mb {
    margin-bottom: 12px;
  }

  .sz {
    display: block;
    /* position: relative;
    top: -138px;
    left: 65px; */
    width: 100%;
  }

  .feature__description.first {
    display: none;
  }

  .feature__description {
    font-weight: 500;
    line-height: 12px;
  }

  .feature__description.second {
    margin-top: 12px;
    display: block;
  }

  .feature__right_block {
    margin-top: 20px;
    display: none;
  }

  .feature__section.problem1 .feature__left_block::after {
    position: absolute;
    content: url("../images/health/icon/lines.svg");
    right: -9px;
    bottom: -400px;
  }

  .feature__section.problem3 {
    margin-top: 16px;
  }

  .problem3-img {
    display: block;
    width: 100%;
  }


  .feature__section.problem3 .feature__title {
    max-width: 300px;
    margin-bottom: 24px;
  }

  .feature__section.problem3 .feature__description {
    margin-top: 24px;
    margin-bottom: 20px;
    font-size: 12px;
    max-width: 290px;
    padding-top: 0;
  }

  .feature__section.problem3 .feature__description::after {
    position: absolute;
    content: url("../images/health/icon/lines1.svg");
    right: -9px;
    bottom: -60px;
  }

  .feature__section.problem3 .feature__description span {
    display: none;
  }

  .feature__images img:last-child {
    width: 197px;
  }

  .health__block {
    flex-direction: column;
  }

  .health__section {
    margin: 20px 16px 0;
    padding: 20px 16px;
    width: calc(100% - 64px);
    gap: 0;
    overflow: hidden;
  }

  .health__block_left_side img {
    margin: 0;
    width: 36px;
  }
  .health__block_left_side svg {
    margin: 0;
    width: 36px;
    height: 36px;
  }

  .health__title {
    font-size: 20px;
    margin-top: 0;
  }

  .health__block_left_side {
    margin-top: 12px;
    margin-bottom: 12px;
    padding-right: 10px;
  }

  .health-img-mobile {
    display: block;
    width: 100%;
  }

  .health-img-desktop {
    display: none;
  }

  .appstore {
    backdrop-filter: blur(5px);
  }

  .health__section .health__block.third .health__block_left_side_wrap {
    gap: 20px;
  }

  .result__line {
    display: block;
  }

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

  .download__section a {
    width: 100%;
  }

  .wrap_items.one {}

  .image img {
    width: 100%;
  }

  .footer_lang-select {
    position: relative;
    z-index: 1;
    display: none;
  }

  .footer_lang-select.fixed-on-focus {
    position: fixed;
    bottom: 100px;
    right: 16px;
    /* отступ от низа экрана */
    z-index: 9999;
    background: white;
    /* чтобы фон не был прозрачным */
  }

  .result__block.last-child {
    width: 311px;
  }

}

/* Для экранов до 320px (очень маленькие телефоны) */
@media (max-width: 320px) {
  .navbar {
    padding: 8px 10px;
    /* Дополнительно уменьшаем отступы */
  }

  .hero__title {
    font-size: 18px;
    /* Дополнительно уменьшаем размер шрифта */
  }

  .hero__description {
    font-size: 10px;
    /* Дополнительно уменьшаем размер шрифта */
    width: 90%;
    /* Дополнительно сокращаем ширину */
  }

  .hero__buttons a img {
    width: 120px;
    /* Дополнительно уменьшаем размер кнопок */
  }

  .result__section {
    width: 90%;
    /* Дополнительно уменьшаем ширину секции */
  }

  .result__block {
    padding: 8px;
    /* Дополнительно уменьшаем внутренние отступы */
  }

  .health__block {
    gap: 8px;
    /* Дополнительно уменьшаем расстояние между элементами */
  }

  .result__line {
    margin: 3px 0;
    /* Дополнительно уменьшаем вертикальные отступы */
  }

  .section__title {
    font-size: 16px;
    /* Дополнительно уменьшаем размер заголовка */
  }

  .footer__list,
  .footer__nav_btn {
    display: block;
    /* Восстанавливаем блоки футера */
    text-align: center;
    /* Центрируем их */
  }
}