/* Базовий CSS reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  text-rendering: optimizeSpeed;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* ----------- */


body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F9FB;
  color: #22223B;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  letter-spacing: 0.02em;
  line-height: 1.6;
  font-size: 18px;
}
h1, h2, h3, h4, h5, h6, .logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1A73E8;
  letter-spacing: 0.03em;
}
a {
  color: #1A73E8;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #36B37E;
}
button, .btn {
  background: #F9A826;
  color: #22223B;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(26,115,232,0.07);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
button:hover, .btn:hover {
  background: #1A73E8;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
::-webkit-scrollbar {
  width: 8px;
  background: #E0F2FE;
}
::-webkit-scrollbar-thumb {
  background: #36B37E;
  border-radius: 8px;
}

.header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(26,115,232,0.05);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 70px;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  color: #1A73E8;
  text-shadow: 0 2px 6px rgba(26,115,232,0.04);
  transition: color 0.2s;
}
.header__logo i {
  font-size: 1.8rem;
}
.header__nav {
  display: flex;
}
.header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}
.header__item {}
.header__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.07rem;
  color: #22223B;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.header__link:hover, .header__link:focus {
  background: #E0F2FE;
  color: #1A73E8;
}
.header__link--active {
  color: #1A73E8;
  font-weight: 700;
  background: #E0F2FE;
  box-shadow: 0 2px 8px rgba(26,115,232,0.06);
}
.header__link i {
  font-size: 1.1rem;
  transition: transform 0.19s;
}
.header__link:hover i, .header__link:focus i {
  transform: scale(1.15) rotate(-6deg);
}
.header__burger {
  display: none;
  background: transparent;
  border: none;
  color: #1A73E8;
  font-size: 1.7rem;
  cursor: pointer;
  margin-left: 18px;
  transition: color 0.17s;
}
.header__burger:hover {
  color: #36B37E;
}

/* Адаптивність */
@media (max-width: 900px) {
  .header__container {
    padding: 0 10px;
  }
  .header__menu {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(26,115,232,0.09);
    border-radius: 0 0 14px 14px;
    flex-direction: column;
    animation: fadeIn 0.23s;
  }
  .header__nav--open {
    display: flex;
  }
  .header__menu {
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
  }
  .header__burger {
    display: block;
  }
}

/* Анімація */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px);}
  to   { opacity: 1; transform: translateY(0);}
}
.footer {
  background: #fff;
  box-shadow: 0 -2px 18px rgba(26,115,232,0.06);
  padding: 40px 0 0 0;
  font-size: 1rem;
  margin-top: 0;
  position: relative;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.7fr;
  gap: 38px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__col--logo {
  gap: 10px;
}
.footer__logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1A73E8;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer__logo i {
  font-size: 1.5rem;
}
.footer__desc {
  color: #22223b99;
  font-size: 1rem;
  margin: 8px 0 0 0;
  max-width: 250px;
}
.footer__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #36B37E;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.footer__nav,
.footer__info,
.footer__contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a,
.footer__info a {
  color: #22223B;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border-radius: 7px;
  transition: color 0.18s, background 0.15s, padding-left 0.18s;
  font-size: 1rem;
}
.footer__nav a:hover,
.footer__info a:hover {
  color: #1A73E8;
  background: #E0F2FE;
  padding-left: 6px;
}
.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #22223B;
  font-size: 1rem;
  line-height: 1.4;
}
.footer__contacts i {
  color: #F9A826;
  font-size: 1.11rem;
  margin-top: 2px;
}
.footer__bottom {
  text-align: center;
  color: #22223b88;
  font-size: 0.98rem;
  padding: 20px 0 12px 0;
  margin-top: 22px;
  border-top: 1px solid #E0F2FE;
}

/* Адаптивність */
@media (max-width: 900px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 6px;
  }
  .footer__col {
    gap: 9px;
  }
  .footer__desc {
    max-width: 100%;
  }
}
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 470px;
  max-width: 1200px;
  margin: 48px auto 0 auto;
  padding: 30px 24px 40px 24px;
  border-radius: 26px;
  background: linear-gradient(95deg, #E0F2FE 60%, #fff 100%);
  box-shadow: 0 10px 38px rgba(26,115,232,0.10);
  position: relative;
  overflow: hidden;
  gap: 36px;
}
.hero__content {
  flex: 1 1 380px;
  z-index: 2;
}
.hero__title {
  font-size: 2.45rem;
  color: #1A73E8;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 20px;
  line-height: 1.18;
}
.hero__highlight {
  display: inline-block;
  background: linear-gradient(90deg, #36B37E 30%, #F9A826 80%);
  color: #fff;
  padding: 2px 13px;
  border-radius: 18px;
  margin-top: 5px;
  font-weight: 700;
  font-size: 1.22em;
  box-shadow: 0 2px 12px rgba(54,179,126,0.07);
  animation: highlightPop 1s cubic-bezier(.56,.09,.53,1.35);
}
@keyframes highlightPop {
  0% { transform: scale(0.8); opacity: 0.4;}
  65% { transform: scale(1.12);}
  100% { transform: scale(1); opacity: 1;}
}
.hero__desc {
  font-size: 1.17rem;
  color: #22223B;
  margin-bottom: 28px;
  opacity: 0.92;
  max-width: 450px;
}
.hero__btn {
  font-size: 1.06rem;
  padding: 15px 34px;
  box-shadow: 0 3px 22px rgba(249,168,38,0.09);
  letter-spacing: 0.01em;
  border-radius: 14px;
  transition: transform 0.14s, box-shadow 0.13s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 30px rgba(26,115,232,0.15);
}

.hero__visual {
  flex: 1 1 340px;
  min-width: 320px;
  position: relative;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#heroCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  border-radius: 16px;
  opacity: 0.8;
  pointer-events: none;
}
.hero__avatars {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* Відображення аватарок */
.hero__avatar {
  position: absolute;
  width: 46px; height: 46px;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(26,115,232,0.11);
  border: 3px solid #fff;
  transition: transform 0.24s, box-shadow 0.17s;
  cursor: pointer;
  will-change: transform;
}
.hero__avatar:hover {
  transform: scale(1.11) rotate(-6deg);
  box-shadow: 0 4px 18px rgba(54,179,126,0.19);
}

/* Адаптив */
@media (max-width: 900px) {
  .hero { flex-direction: column; min-height: 360px; padding: 24px 8px 26px 8px; gap: 28px;}
  .hero__visual { min-width: 90vw; height: 240px;}
  .hero__content { text-align: center; }
  .hero__desc { margin-left: auto; margin-right: auto;}
}
@media (max-width: 600px) {
  .hero { min-height: 200px; border-radius: 0; margin: 18px 0 0 0;}
  .hero__visual { height: 170px;}
  .hero__btn { font-size: 0.96rem; padding: 11px 22px;}
  .hero__title { font-size: 1.34rem;}
}
.about {
  background: #F6F9FB;
  padding: 54px 0 44px 0;
  margin: 0 auto;
  border-radius: 22px;
  max-width: 1200px;
  box-shadow: 0 4px 24px rgba(26,115,232,0.06);
  position: relative;
  z-index: 2;
}
.about__container {
  padding: 0 32px;
}
.about__title {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A73E8;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
}
.about__title i {
  color: #36B37E;
  font-size: 1.6rem;
  transition: transform 0.25s;
}
.about__lead {
  color: #22223B;
  font-size: 1.14rem;
  margin-bottom: 35px;
  max-width: 650px;
  line-height: 1.7;
  opacity: 0.97;
}
.about__facts {
  display: flex;
  gap: 28px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about__fact {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(54,179,126,0.08);
  padding: 30px 23px 23px 23px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.19s;
  opacity: 0;
  transform: translateY(30px);
  animation: aboutFadeIn 0.7s forwards;
}
.about__fact:nth-child(1) { animation-delay: 0.1s;}
.about__fact:nth-child(2) { animation-delay: 0.25s;}
.about__fact:nth-child(3) { animation-delay: 0.4s;}
.about__fact:nth-child(4) { animation-delay: 0.55s;}
@keyframes aboutFadeIn {
  100% { opacity: 1; transform: translateY(0);}
}
.about__icon {
  background: linear-gradient(130deg, #E0F2FE 60%, #F9A826 120%);
  color: #36B37E;
  border-radius: 50%;
  padding: 14px 15px 13px 15px;
  box-shadow: 0 2px 10px rgba(249,168,38,0.11);
  margin-bottom: 13px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  transition: background 0.18s, color 0.21s, transform 0.18s;
}
.about__fact:hover .about__icon {
  background: linear-gradient(115deg, #36B37E 50%, #1A73E8 120%);
  color: #fff;
  transform: scale(1.15) rotate(-6deg);
}
.about__fact-title {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A73E8;
  font-size: 1.13rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.about__fact p {
  color: #22223bda;
  font-size: 1rem;
  line-height: 1.45;
  margin: 0;
}
@media (max-width: 900px) {
  .about__facts { gap: 16px;}
  .about__fact { padding: 22px 10px 15px 14px; max-width: 100%; min-width: 130px;}
}
@media (max-width: 600px) {
  .about { border-radius: 0; padding: 33px 0 27px 0;}
  .about__container { padding: 0 7px;}
  .about__facts { flex-direction: column; gap: 10px;}
  .about__fact { align-items: center;}
  .about__title { font-size: 1.18rem;}
}
.stories {
  background: #fff;
  padding: 56px 0 56px 0;
  border-radius: 22px;
  max-width: 1200px;
  margin: 40px auto;
  box-shadow: 0 4px 24px rgba(249,168,38,0.06);
  position: relative;
}
.stories__container {
  padding: 0 32px;
}
.stories__title {
  color: #1A73E8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.stories__title i {
  color: #F9A826;
  font-size: 1.4rem;
  animation: blink 1.6s infinite;
}
@keyframes blink {
  0%,100%{ opacity:1; }
  80%{ opacity:0.6; }
}
.stories__subtitle {
  color: #22223bda;
  font-size: 1.13rem;
  margin-bottom: 38px;
  max-width: 600px;
  opacity: 0.93;
}
.stories__list {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.stories__card {
  background: #F6F9FB;
  border-radius: 16px;
  box-shadow: 0 3px 14px rgba(26,115,232,0.09);
  padding: 23px 20px 21px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 230px;
  max-width: 265px;
  flex: 1 1 230px;
  margin-bottom: 16px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.19s;
  cursor: pointer;
  animation: cardUp 0.66s;
  opacity: 0.96;
}
@keyframes cardUp {
  from { opacity: 0; transform: translateY(24px);}
  to   { opacity: 0.96; transform: translateY(0);}
}
.stories__card:hover {
  box-shadow: 0 8px 28px rgba(54,179,126,0.14);
  transform: translateY(-8px) scale(1.045);
}
.stories__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #36B37E;
  margin-bottom: 13px;
  box-shadow: 0 2px 8px rgba(26,115,232,0.11);
}
.stories__info {
  margin-bottom: 12px;
}
.stories__author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #1A73E8;
  font-size: 1.04rem;
  margin-bottom: 2px;
}
.stories__role {
  color: #36B37E;
  font-size: 0.98rem;
  margin-bottom: 7px;
  font-weight: 500;
}
.stories__quote {
  color: #22223B;
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 0;
}
.stories__btn {
  margin-top: 9px;
  background: #F9A826;
  color: #22223B;
  border-radius: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 16px;
  box-shadow: 0 3px 14px rgba(249,168,38,0.09);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: background 0.19s, color 0.19s, transform 0.16s;
}
.stories__btn:hover {
  background: #1A73E8;
  color: #fff;
  transform: scale(1.07) translateY(-2px);
}
.stories__btn i {
  font-size: 1.1rem;
}

/* Адаптивність */
@media (max-width: 900px) {
  .stories__list { gap: 12px;}
  .stories__container { padding: 0 10px;}
}
@media (max-width: 600px) {
  .stories { border-radius: 0; padding: 26px 0;}
  .stories__list { flex-direction: column; gap: 7px;}
  .stories__card { max-width: 100%; min-width: 120px;}
  .stories__avatar { width: 44px; height: 44px;}
}

.trends {
  background: #E0F2FE;
  padding: 54px 0 54px 0;
  border-radius: 22px;
  max-width: 1200px;
  margin: 42px auto 0 auto;
  box-shadow: 0 4px 24px rgba(54,179,126,0.08);
  position: relative;
  z-index: 2;
}
.trends__container {
  padding: 0 32px;
}
.trends__title {
  color: #1A73E8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.trends__title i {
  color: #F9A826;
  font-size: 1.4rem;
  animation: blink 1.8s infinite;
}
.trends__subtitle {
  color: #22223bda;
  font-size: 1.13rem;
  margin-bottom: 34px;
  max-width: 650px;
  opacity: 0.93;
}
.trends__list {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trends__item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 18px rgba(26,115,232,0.08);
  padding: 28px 20px 22px 20px;
  flex: 1 1 220px;
  min-width: 195px;
  max-width: 255px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.18s;
  opacity: 0;
  transform: translateY(32px);
  animation: trendsFadeIn 0.7s forwards;
}
.trends__item:nth-child(1) { animation-delay: 0.14s;}
.trends__item:nth-child(2) { animation-delay: 0.27s;}
.trends__item:nth-child(3) { animation-delay: 0.41s;}
.trends__item:nth-child(4) { animation-delay: 0.55s;}
@keyframes trendsFadeIn {
  100% { opacity: 1; transform: translateY(0);}
}
.trends__icon {
  background: linear-gradient(120deg, #F9A826 70%, #36B37E 120%);
  color: #1A73E8;
  border-radius: 50%;
  padding: 13px 14px 12px 14px;
  margin-bottom: 12px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  transition: background 0.16s, color 0.19s, transform 0.17s;
}
.trends__item:hover .trends__icon {
  background: linear-gradient(110deg, #36B37E 60%, #1A73E8 120%);
  color: #fff;
  transform: scale(1.13) rotate(8deg);
}
.trends__item-title {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A73E8;
  font-size: 1.11rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.trends__item-desc {
  color: #22223bda;
  font-size: 1rem;
  line-height: 1.45;
  margin: 0;
}
@media (max-width: 900px) {
  .trends__list { gap: 13px;}
  .trends__container { padding: 0 8px;}
  .trends__item { padding: 17px 8px 15px 8px; max-width: 100%;}
}
@media (max-width: 600px) {
  .trends { border-radius: 0; padding: 28px 0;}
  .trends__list { flex-direction: column; gap: 8px;}
  .trends__item { align-items: center;}
  .trends__title { font-size: 1.19rem;}
}
.contact {
  background: #F6F9FB;
  padding: 56px 0 56px 0;
  border-radius: 22px;
  max-width: 900px;
  margin: 40px auto;
  box-shadow: 0 3px 22px rgba(54,179,126,0.08);
  position: relative;
}
.contact__container {
  padding: 0 32px;
}
.contact__title {
  color: #1A73E8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.contact__title i {
  color: #36B37E;
  font-size: 1.38rem;
}
.contact__subtitle {
  color: #22223bda;
  font-size: 1.13rem;
  margin-bottom: 36px;
  max-width: 550px;
  opacity: 0.93;
}
.contact__form {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 16px rgba(26,115,232,0.09);
  padding: 32px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__row {
  display: flex;
  gap: 18px;
  margin-bottom: 10px;
}
.contact__input, .contact__textarea, .contact__captcha-input {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 9px;
  border: 1.5px solid #E0F2FE;
  padding: 12px 14px;
  font-size: 1.04rem;
  margin-bottom: 0;
  outline: none;
  transition: border 0.17s;
  background: #F6F9FB;
}
.contact__input:focus, .contact__textarea:focus, .contact__captcha-input:focus {
  border: 1.5px solid #1A73E8;
}
.contact__input, .contact__captcha-input {
  width: 100%;
  min-width: 0;
}
.contact__textarea {
  resize: vertical;
  min-height: 66px;
  max-height: 180px;
  margin-bottom: 0;
}
.contact__captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
#captchaQuestion {
  color: #36B37E;
  background: #E0F2FE;
  border-radius: 7px;
  padding: 4px 12px;
  font-weight: 600;
}
.contact__captcha-input {
  width: 90px;
  margin-left: 0;
}
.contact__btn {
  align-self: flex-start;
  font-size: 1.06rem;
  padding: 11px 25px;
  border-radius: 10px;
  background: #F9A826;
  color: #22223B;
  box-shadow: 0 3px 18px rgba(249,168,38,0.08);
  margin-top: 9px;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: background 0.18s, color 0.18s, transform 0.16s;
  border: none;
}
.contact__btn:hover {
  background: #1A73E8;
  color: #fff;
  transform: translateY(-2px) scale(1.06);
}
.contact__success {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #36B37E;
  font-size: 1.06rem;
  margin-top: 16px;
  animation: fadeInSuccess 0.44s;
}
.contact__success i {
  font-size: 1.4rem;
}
@keyframes fadeInSuccess {
  from { opacity: 0;}
  to   { opacity: 1;}
}
@media (max-width: 600px) {
  .contact { border-radius: 0; padding: 22px 0;}
  .contact__container { padding: 0 5px;}
  .contact__form { padding: 14px 6px 9px 6px;}
  .contact__row { flex-direction: column; gap: 8px;}
}
.cookie-popup {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #22223B;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 28px rgba(26,115,232,0.18);
  padding: 20px 26px;
  z-index: 9999;
  display: flex;
  align-items: center;
  animation: popupIn 0.38s cubic-bezier(.38,1.21,.61,.99);
  font-size: 1rem;
  min-width: 260px;
  max-width: 97vw;
}
.cookie-popup__content {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-popup__icon i {
  font-size: 1.7rem;
  color: #F9A826;
}
.cookie-popup__text {
  font-size: 1rem;
  line-height: 1.45;
  opacity: 0.94;
  max-width: 390px;
}
.cookie-popup__text a {
  color: #F9A826;
  text-decoration: underline;
  transition: color 0.16s;
}
.cookie-popup__text a:hover {
  color: #36B37E;
}
.cookie-popup__btn {
  background: #F9A826;
  color: #22223B;
  font-weight: 600;
  border-radius: 9px;
  padding: 8px 22px;
  margin-left: 16px;
  box-shadow: 0 3px 14px rgba(249,168,38,0.10);
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s, transform 0.13s;
}
.cookie-popup__btn:hover {
  background: #36B37E;
  color: #fff;
  transform: scale(1.05);
}
@keyframes popupIn {
  from { opacity: 0; transform: translateY(60px) translateX(-50%);}
  to   { opacity: 1; transform: translateY(0) translateX(-50%);}
}
@media (max-width: 600px) {
  .cookie-popup {
    padding: 13px 6px;
    border-radius: 8px;
    font-size: 0.98rem;
    bottom: 10px;
  }
  .cookie-popup__content { gap: 9px; flex-direction: column; align-items: flex-start;}
  .cookie-popup__btn { margin-left: 0;}
}
.pages {
  background: #fff;
  border-radius: 22px;
  max-width: 900px;
  margin: 44px auto 34px auto;
  box-shadow: 0 4px 32px rgba(26,115,232,0.07);
  padding: 48px 0 42px 0;
  min-height: 70vh;
  position: relative;
}
.pages .container {
  padding: 0 32px;
  max-width: 820px;
  margin: 0 auto;
}
.pages h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A73E8;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 26px;
  letter-spacing: 0.03em;
  text-align: left;
}
.pages h2 {
  color: #36B37E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.pages p, .pages ul, .pages ol {
  color: #22223B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.11rem;
  line-height: 1.72;
  margin-bottom: 20px;
  opacity: 0.98;
}
.pages ul, .pages ol {
  padding-left: 26px;
  margin-bottom: 24px;
}
.pages ul li, .pages ol li {
  margin-bottom: 9px;
  padding-left: 2px;
  position: relative;
}
.pages ul li::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: linear-gradient(120deg,#1A73E8,#F9A826);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 2px;
}
.pages a {
  color: #1A73E8;
  text-decoration: underline;
  transition: color 0.16s;
  word-break: break-all;
}
.pages a:hover {
  color: #36B37E;
  text-decoration: underline;
}
.pages strong {
  color: #22223B;
  font-weight: 600;
}
@media (max-width: 900px) {
  .pages { max-width: 98vw; padding: 24px 0 20px 0; border-radius: 13px;}
  .pages .container { padding: 0 7px; }
  .pages h1 { font-size: 1.4rem; margin-bottom: 16px;}
  .pages h2 { font-size: 1.1rem; margin-top: 20px; }
  .pages p, .pages ul, .pages ol { font-size: 0.98rem;}
}
