body {
  font-family: "Inter", sans-serif;
  background-color: #fdfdfb;
  overflow-x: hidden;
  position: relative;
}
.hero-with-video {
  position: relative;
  height: 930px;
  overflow: hidden;
}

.background-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 101%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-header {
  height: 86px;
}

/* Остальные блоки */
.custom-navbar,
.hero-section {
  position: relative;
  z-index: 1;
}
/* Навбар поверх видео */
.custom-navbar {
  position: relative; /* или absolute */
  z-index: 1;
  background-color: transparent !important;
}

.custom-container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;

  width: 100%;
  box-sizing: border-box;
  background: transparent !important;
}

@font-face {
  font-family: "Cygre SemiBold";
  src: url("../fonts/cygre-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Cygre light";
  src: url("../fonts/cygre-light.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

.custom-nav-link {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #153e64;
}

 .lang {
  font-size: 20px;
  background: linear-gradient(90deg, #74b2f0, #19b8ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.custom-nav-project {
  position: relative;
  padding: 18px 50px !important;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #153e64;
  border: none;
  cursor: pointer;
  z-index: 0;
  overflow: visible;
}

.custom-nav-project::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  border-radius: 100px;
  padding: 3px; /* толщина бордера */
  background: linear-gradient(90deg, #74b2f0, #19b8ca);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.offcanvas-top {
  height: 300px !important;
  max-height: 300px !important;
  overflow-y: auto;
}
/* Оффканвас ссылки */
.offcanvas-top .nav-link {
  display: inline-block;
  width: auto;
  padding: 7px 20px !important;
  font-size: 22px;
  font-weight: 500;
  color: #153e64;
}

/* Центровка списка */
.offcanvas-top .navbar-nav {
  align-items: center;
}

.hero-section {
  padding-top: 136px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: "Cygre SemiBold";
  font-weight: 700;
  font-size: 120px;
  line-height: 100px;
  color: #153e64;
  text-align: center;
}

.hero-subtitle {
  font-family: "Cygre light";
  font-style: normal;
  font-size: 40px;
  line-height: 100px;
  color: #153e64;
  margin-top: 30px;
  margin-bottom: 64px;
}

.gradient-text {
  background: linear-gradient(172.21deg, #74b2f0, #19b8ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.project_btn {
  padding: 23px 94.5px;
  background: linear-gradient(132.21deg, #74b2f0 0%, #19b8ca 100%);
  border-radius: 100px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #fffefd;
  text-decoration: none;
  margin-bottom: 198px;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100vw;
  position: relative;
  margin-top: 198px;
  margin-bottom: 150px;
}

.marquee {
  width: 100%;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-left 12s linear infinite;
  will-change: transform;
}

.marquee.reverse .marquee-track {
  animation: marquee-right 12s linear infinite;
}

.marquee-block {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  border: 1px solid rgba(116, 178, 240, 0.5);
  border-radius: 100px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: rgba(116, 178, 240, 0.5);
  white-space: nowrap;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.services-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 55px;
  line-height: 100%;
  align-items: center;
  color: #153e64;
  margin-top: 150px;
  margin-bottom: 100px;
}

.blue-text {
  color: #74b2f0;
}

.services-subtitle {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: #153e64;
  margin-bottom: 100px;
}

.services-left {
  position: relative;
  height: 500px;
  /* Убираем фон с основного блока */
  background-image: none;
  color: white;
  display: flex;
  align-items: flex-start;
  border-radius: 8px;
  padding-top: 16px;
}

.services-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120px; /* сдвигаем влево за пределы блока */
  width: 515px; /* подбираешь под размер снежинки */
  height: 515px;
  background-image: url("../img/screw.png");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none; /* чтобы не мешала кликам */
}

.services-phrase {
  margin: 0;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 42px;
  display: flex;
  align-items: center;
  color: #153e64;
}

.about-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 55px;
  line-height: 64px;
  color: #153e64;
  margin-top: 150px;
  margin-bottom: 100px;
}

.under-about-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 55px;
  line-height: 64px;
  color: #153e64;
  margin-top: 100px;
  margin-bottom: 100px;
}

.my-accordion {
  padding-left: 1rem;
}

.my-accordion-header {
  margin-bottom: 0px !important;
}

.my-accordion-item {
  border-left: 3px solid #143a64 !important;
  padding-left: 15px;
  margin: 0;
  transition: border-color 0.3s;
}

.my-accordion-button {
  background: #fdfdfb;
  border: none !important;
  box-shadow: none !important;
  color: #143a64;
  font-size: 40px;
  font-weight: 500;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  transition: color 0.3s;
}

.my-accordion-button::after {
  display: none;
}

.accordion-item,
.accordion-button {
  border-top: 0px !important;
  border-bottom: 0px !important;
  border-right: 0px !important;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

.accordion-button:not(.collapsed) {
  background-color: #fdfdfb !important;
}

.plus-icon {
  display: inline-block;
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  position: relative;
  margin-left: 1rem;
}

.plus-icon::before,
.plus-icon::after {
  content: "";
  position: absolute;
  background-color: #143a64;
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s, transform 0.3s;
}

.plus-icon::after {
  transform: rotate(90deg);
  transform-origin: center;
}

.accordion-button:not(.collapsed) .plus-icon::after {
  transform: scaleX(0);
}

.my-accordion-body {
  padding: 0 0 16px 0;
  color: #143a64;
  font-size: 20px;
  background: #fdfdfb;
}

.my-accordion-item.active .my-accordion-button {
  color: #143a64;
}

.my-accordion-item.inactive .my-accordion-button {
  color: #9aa3aa !important;
}

.my-accordion-item.inactive .plus-icon::before,
.my-accordion-item.inactive .plus-icon::after {
  background-color: #9aa3aa !important;
}

.my-accordion-item.active {
  border-left: 3px solid #74b2f0 !important; /* Новый активный цвет */
}

.my-accordion-item.active .plus-icon::before {
  background-color: #74b2f0 !important;
}

.my-accordion-item.active .plus-icon::after {
  transform: scaleX(0);
  background-color: #0044cc !important;
}

.my-accordion-item.inactive {
  border-left: 3px solid #ccc !important;
}

.why-us-item {
  background: #fdfdfb;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0px 20px;
}

/* Картинки */
.img-wrapper {
  position: relative;
  width: 100%;
  height: 370px; /* верни сюда нужную высоту */
  overflow: hidden;
  margin-bottom: 30px;
}
.img-wrapper img.img-default,
.img-wrapper img.img-hover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.second-description {
  margin-bottom: 10px;
}
.img-wrapper img.img-default {
  opacity: 1;
  z-index: 1;
}
.img-wrapper img.img-hover {
  opacity: 0;
  z-index: 2;
}
.why-us-item.hovering .img-wrapper img.img-default {
  opacity: 0;
}
.why-us-item.hovering .img-wrapper img.img-hover {
  opacity: 1;
}

/* Заголовок */
.why-us-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-size: 30px;
  line-height: 36px;
  color: #153e64;
  transition: color 0.3s ease;
}

/* Описание */
.hover-description {
  opacity: 0;
  transform-origin: top;
  transform: scaleY(0);
  margin-top: 1rem;
  font-size: 24px;
  line-height: 30px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  color: #74b2f0;
  transition: transform 0.6s ease, opacity 0.6s ease, color 0.3s ease;
  overflow: hidden;
}

/* Появление текста */
.why-us-item.hovering .hover-description {
  opacity: 1;
  transform: scaleY(1);
}

/* Перекраска после полной анимации */
.why-us-item.ready .why-us-title {
  color: #74b2f0;
}
.why-us-item.ready .hover-description {
  color: #153e64;
}

.contacts-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  color: #fffefd;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 15px;
}

.custom-container-contacts {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  /* padding-left: 240px;
  padding-right: 240px; */
  width: 100%;
  box-sizing: border-box;
}

.contacts-section {
  /* background: linear-gradient(132.21deg, #74b2f0 0%, #19b8ca 100%); */
  background-image: url("../img/back_contacts.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.contacts-left {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-left: 240px;
  padding-bottom: 60px;
}

.contacts-right {
  position: relative;
  z-index: 1;
  background: linear-gradient(132.21deg, #74b2f0 0%, #19b8ca 100%);
  box-shadow: -30px 0px 40.1px rgba(15, 11, 51, 0.15);
  border-radius: 30px 0px 0px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* align-items: center; */
  padding: 60px 240px 60px 120px;
  /* gap: 10px; */
}

.contacts-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;

  color: #fffefd;
}

.contacts-title-second {
  margin-top: 45px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #fffefd;
}

.contacts-list a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  color: #fffefd;
  text-decoration: none;
  list-style: none;
}

.contacts-list li {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  color: #fffefd;
  text-decoration: none;
  list-style: none;
  margin-bottom: 12px;
}

.contacts_button {
  background-color: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
}

.Necessarily-label {
  margin-top: 10px;
  font-size: 14px;
  color: #475569;
}

.download {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #fffefd;
  margin-top: 75px;
}

.send {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: #153e64;
  text-decoration: none;
}

.send-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.privacy-text {
  font-size: 14px;
  color: #153e64;
  max-width: 300px;
  line-height: 1.4;
}

.download-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 82px;
  background: #153e64;
  border-radius: 55px;
  color: #fffefd;
  font-weight: 500;
  font-size: 25px;
  max-height: 60px;
  text-decoration: none;
}

.send-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 21px 82px;
  background: linear-gradient(137.63deg, #f6da66 3.09%, #f3c37f 96.91%);
  border-radius: 55px;
  border-color: #f6da66;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 64px;
  color: #153e64;
  min-width: 380px;
  max-height: 60px;
  /* margin-top: 40px; */
}

.right-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: #153e64;
}

.form-control {
  border-radius: 20px;
  min-height: 65px;
}

.custom-form-control {
  height: 120px;
  min-height: 120px !important;
  /* min-width: 705px; */
  margin-bottom: 74px;
}
.custom-footer {
  background-image: url("../img/footer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 240px;
  box-sizing: border-box;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px 10px;
  /* max-width: 960px; */
  margin: 0 auto;
  box-sizing: border-box;
}

.footer-service-btn {
  padding: 15px 17px;
  background-color: inherit;
  /* border-image: linear-gradient(137.63deg, #f6da66 3.09%, #f3c37f 96.91%) 1; */
  border: 3px solid #f6da66;
  border-radius: 55px !important;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  color: #f6da66;
  white-space: normal;
  text-decoration: none;
  cursor: pointer;
}

.footer-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 81px;
  padding-bottom: 60px;
  background-color: transparent; /* поменяешь если нужно */
  gap: 30px;
  flex-wrap: wrap;
}

.footer-info-row a {
  color:#fffefd;
  text-decoration: none;
}

.footer-info-row .policy {
  color: #74b2f0;
}



.logo-footer {
  height: 190px;
}

.telegram {
  width: 30px;
  margin-right: 5px;
}

.footer-info-block {
  flex: 1 1 0;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 25px;
}

.iti {
  width: 100%;
  font-size: 14px;
}

.iti--allow-dropdown input {
  padding-left: 50px !important;
  color: #212529; /* тёмный текст */
  background-color: #fff;
  height: 65px;
  /* border: 1px solid #ced4da; */
  border-radius: 20px;
}

.iti__country-name {
  font-size: 14px;
  max-height: 250px;
  overflow-y: auto;
  background-color: #fff;
  color: #212529;
  /* border: 1px solid #ced4da; */
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); */
  z-index: 10000;
}

.iti__country:hover,
.iti__country.iti__highlight {
  background-color: #f8f9fa;
}

.iti__flag-container {
  background-color: transparent;
}

#telephone_contacts::placeholder {
  color: #6c757d;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 56px;
  }

  .hero-title {
    font-size: 66px;
    line-height: 70px;
  }

  .hero-subtitle {
    font-size: 30px;
    line-height: 36px;
  }

  .hero-with-video {
    height: 900px;
  }

  .marquee-block {
    padding: 8px 30px;
  }

  .marquee-wrapper {
    margin-top: 115px;
  }

  .services-left {
    padding-top: 0px;
    height: auto;
    margin-bottom: 20px;
  }

  .services-left::before {
    /* background-image: none; */
    left: -60px;
    width: 300px;
    height: 300px;
  }
  .my-accordion-item {
    background: transparent;
  }
  .my-accordion-button {
    background: transparent;
  }

  .accordion-button:not(.collapsed) {
    background-color: transparent !important;
  }

  .services-phrase {
    margin-top: 20px;
    font-size: 30px;
    line-height: 36px;
  }

  .services-title {
    font-size: 40px;
    line-height: 44px;
    margin-top: 0px;
    margin-bottom: 60px;
  }

  .services-subtitle {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 60px;
  }

  .my-accordion-button {
    font-size: 24px;
    line-height: 30px;
  }

  .my-accordion {
    padding-left: 0px;
  }

  .plus-icon {
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
  }

  .contacts-section {
    background: linear-gradient(132.21deg, #74b2f0 0%, #19b8ca 100%);
  }
  .contacts-left {
    padding: 20px 20px;
  }

  .contacts-right {
    padding: 20px 15px;
    border-radius: 0px;
    box-shadow: none;
  }

  .custom-form-control {
    /* min-width: 400px; */
  }

  .custom-footer {
    padding: 0px 20px;
  }

  .logo-footer {
    height: 100px;
  }

  .card {
    background-color: #fdfdfb !important;
    /* min-height: 830px;
    height: 830px; */
    border: none;
  }
  .hover-description {
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    transform: none !important;
  }
  .carousel-inner {
    max-height: 900px;
  }

  .under-about-title {
    margin-top: 60px;
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 60px;
  }

  .about-title {
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 60px;
  }

  .send-btn {
    font-size: 18px;
    line-height: 64px;
    min-width: 0px;
    padding: 21px 40px;
  }

  .contacts-title {
    font-size: 30px;
    line-height: 36px;
  }

  .contacts-title-second {
    font-size: 20px;
    line-height: 24px;
  }

  .contacts-list a {
    font-size: 20px;
    line-height: 24px;
  }

  .contacts-list li {
    font-size: 20px;
    line-height: 24px;
  }

  .contacts-list {
    gap: 10px;
  }

  .download {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #fffefd;
    margin-top: 0px;
  }

  .download-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 21px 40px;
    background: #153e64;
    border-radius: 55px;
    color: #fffefd;
    font-weight: 500;
    font-size: 18px;
    max-height: 60px;
  }

  .footer-wrapper {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px;
  }

  .footer-service-btn {
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 10px;
  }

  /* Контакты: по центру и аккуратно */
  .footer-info-row {
    flex-direction: row;
    align-items: center !important;
    text-align: center;
    gap: 8px;
  }

  .footer-info-block {
    width: 100%;
    text-align: center !important;
    margin-bottom: 5px;
  }

  .footer-info-block img {
    margin-right: 6px;
  }

  /* Логотип: не растягивать */
  .logo-footer {
    max-width: 140px;
    height: auto;
  }

  /* Политика и копирайт: в колонку, по центру */
  .footer-info-row .policy {
    font-size: 12px;
    line-height: 1.4;
  }
  /* Почта и телефон поменьше */
  .footer-info-row .footer-info-block {
    font-size: 13px;
  }

  /* Логотип побольше */
  .logo-footer {
    max-width: 220px;
    height: auto;
  }

  /* Последняя строка: политика слева, копирайт справа */
  .footer-info-row:last-of-type {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: center;
    gap: 0;
    /* padding: 0 10px; */
  }

  .footer-info-row:last-of-type .footer-info-block {
    width: auto;
    font-size: 12px;
    white-space: nowrap;
  }

  /* Центровка кнопок "Телеграм" */
  .footer-info-block img {
    vertical-align: middle;
  }
  .telegram {
    width: 20px;
  }

  .footer-info-row {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}
@media (max-width: 400px) {
  .logo-header {
    height: 60px;
  }

  .hero-title {
    font-size: 55px;
    line-height: 56px;
  }

  .hero-subtitle {
    font-size: 20px;
    line-height: 24px;
    margin-top: 20px;
    margin-bottom: 44px;
  }

  .project_btn {
    font-size: 18px;
    line-height: 22px;
    padding: 18px 61px;
  }

  .marquee-wrapper {
    margin-top: 198px;
    margin-bottom: 100px;
  }
  .card {
    /* min-height: 870px;
    height: 870px; */
  }
  .custom-form-control {
    margin-bottom: 20px;
  }

  .download-row {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .download-row a.download-btn,
  .send-btn {
    margin-bottom: 10px;
  }
  .footer-info-row {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    gap: 8px;
  }

  .contacts-right {
    padding: 20px 20px;
  }

  .services-title {
    font-size: 30px;
    line-height: 36px;
  }

  .services-subtitle {
    font-size: 20px;
    line-height: 24px;
  }

  .my-accordion-button {
    font-size: 20px;
    line-height: 24px;
  }

  .my-accordion-body {
    font-size: 16px;
  }

  .plus-icon {
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
  }

  .about-title {
    font-size: 30px;
    line-height: 36px;
  }

  .why-us-title {
    font-size: 30px;
    line-height: 36px;
  }

  .hover-description {
    font-size: 20px;
    line-height: 24px;
  }

  .under-about-title {
    font-size: 30px;
    line-height: 36px;
  }

  .contacts-title {
    font-size: 30px;
    line-height: 36px;
  }
}
.send {
    position: relative;
    z-index: 1;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    z-index: -1;
}

.cookie {
    display: none; /* скрыта по умолчанию, показывается через JS */
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 750px;
    width: 90%;
    background-color: #ffffff;
    color: #153e64;
    border: 2px solid #74b2f0;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-family: Arial, sans-serif;
    z-index: 9999;
}

/* Текст и ссылка */
.cookie__text {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.cookie__text a {
    color: #74b2f0;
    text-decoration: underline;
}

/* Кнопка */
.cookie__button {
    background-color: #153e64;
    color: #ffffff;
    border: 2px solid #74b2f0;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie__button:hover {
    background-color: #74b2f0;
    color: #153e64;
    transform: scale(1.05);
}