/* Базовий 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: 'Inter', Arial, sans-serif;
  background: #F4F8FB;
  color: #23272A;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.5;
  font-size: 17px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
.header {
  position: relative;
  width: 100%;
  background: #1C1F23;
  overflow: hidden;
  min-height: 110px;
  z-index: 2;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  position: relative;
  z-index: 2;
}

.header__logo {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.header__logo-main {
  font-family: 'Manrope', sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #4BA3FF;
  letter-spacing: 0.05em;
  transition: letter-spacing 0.3s cubic-bezier(.5,.2,.1,1);
  cursor: pointer;
}

.header__logo-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFBE3B;
  text-shadow: 0 0 8px #fff5;
  transition: text-shadow 0.3s cubic-bezier(.5,.2,.1,1);
  cursor: pointer;
}

.header__logo:hover .header__logo-main {
  letter-spacing: 0.19em;
}
.header__logo:hover .header__logo-sub {
  text-shadow: 0 0 16px #FFBE3B, 0 0 32px #4BA3FF60;
}

.header__nav {
  display: flex;
  gap: 28px;
}

.header__link {
  color: #F4F8FB;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.23s;
  padding: 4px 2px;
}

.header__link::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #4BA3FF;
  transition: width 0.3s;
  position: absolute;
  left: 0; bottom: 0;
}

.header__link:hover, .header__link--accent {
  color: #4BA3FF;
}

.header__link:hover::after, .header__link--accent::after {
  width: 100%;
}

.header__link--accent {
  background: #FFBE3B15;
  border-radius: 7px;
  padding: 4px 18px;
  color: #FFBE3B;
  font-weight: 700;
  box-shadow: 0 2px 10px #FFBE3B33;
  transition: background 0.23s, color 0.23s;
}

.header__link--accent:hover {
  background: #FFBE3B55;
  color: #1C1F23;
}

#header-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 110px;
  z-index: 1;
  pointer-events: none;
  display: block;
}
@media (max-width: 800px) {
  .header__container {
    flex-direction: column;
    gap: 10px;
    height: auto;
    padding: 16px 8px;
  }
  .header__nav {
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .header__logo-main {
    font-size: 1.25rem;
  }
  .header__logo-sub {
    font-size: 0.95rem;
  }
  .header__container {
    padding: 12px 4px;
  }
}
.footer {
  background: #23272A;
  color: #F4F8FB;
  padding-top: 44px;
  position: relative;
  z-index: 2;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 24px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px 24px;
}

.footer__col {
  min-width: 0;
}

.footer__col--logo .footer__logo {
  display: flex;
  gap: 7px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #4BA3FF;
  margin-bottom: 8px;
}
.footer__logo-main {
  letter-spacing: 0.09em;
}
.footer__logo-sub {
  color: #FFBE3B;
  font-size: 1.05rem;
  letter-spacing: 0.13em;
}
.footer__tagline {
  margin-top: 8px;
  font-size: 1rem;
  color: #E7ECF3;
  opacity: 0.7;
}

.footer__title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  color: #FFBE3B;
  margin-bottom: 8px;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.footer__list, .footer__contacts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__link {
  color: #F4F8FB;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  transition: color 0.21s;
  position: relative;
  padding: 2px 0;
}

.footer__link:hover {
  color: #4BA3FF;
  text-decoration: underline;
}

.footer__contacts li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 1rem;
}

.footer__icon {
  width: 22px;
  height: 22px;
  color: #4BA3FF;
  flex-shrink: 0;
  opacity: 0.84;
  transition: color 0.21s;
}

.footer__address {
  color: #E7ECF3;
  font-size: 1rem;
  opacity: 0.78;
}

.footer__bottom {
  border-top: 1px solid #35383c;
  padding: 16px 0 8px 0;
  text-align: center;
  color: #E7ECF3;
  font-size: 0.97rem;
  opacity: 0.8;
  background: #1C1F23;
}

@media (max-width: 900px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
}
@media (max-width: 600px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 18px 0;
    padding: 0 8px 18px 8px;
  }
  .footer__col {
    margin-bottom: 8px;
  }
  .footer__bottom {
    font-size: 0.91rem;
  }
}
.intro {
  position: relative;
  width: 100%;
  background: #F4F8FB;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: center;
  z-index: 1;
}

#intro-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

.intro__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 420px;
  padding: 48px 24px 32px 24px;
  gap: 36px;
}

.intro__content {
  flex: 1 1 400px;
  min-width: 290px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.intro__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  color: #1C1F23;
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.18;
  animation: fadeInUp 0.85s 0.1s both;
}

.intro__subtitle {
  font-size: 1.25rem;
  color: #23272A;
  margin: 0;
  opacity: 0.9;
  animation: fadeInUp 0.95s 0.3s both;
}
.intro__subtitle-highlight {
  color: #4BA3FF;
  font-weight: 700;
}

.intro__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: fadeInUp 1s 0.5s both;
}

.intro__chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #E7ECF3;
  color: #1C1F23;
  padding: 7px 15px;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 8px #4BA3FF18;
  cursor: pointer;
  transition: background 0.21s, box-shadow 0.21s, color 0.21s;
}
.intro__chip:hover {
  background: #4BA3FF;
  color: #fff;
  box-shadow: 0 4px 16px #4BA3FF33;
}
.intro__chip i {
  width: 18px;
  height: 18px;
  color: #4BA3FF;
  transition: color 0.21s;
}
.intro__chip:hover i {
  color: #fff;
}

.intro__btn {
  margin-top: 10px;
  display: inline-block;
  background: linear-gradient(90deg,#4BA3FF 0%,#FFBE3B 100%);
  color: #1C1F23;
  padding: 13px 36px;
  border-radius: 30px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px #4ba3ff29;
  letter-spacing: 0.02em;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.12s;
  animation: fadeInUp 1.1s 0.7s both;
}
.intro__btn:hover {
  background: linear-gradient(90deg,#FFBE3B 0%,#4BA3FF 100%);
  color: #23272A;
  box-shadow: 0 7px 24px #ffbe3b3d;
  transform: scale(1.035);
}

.intro__image {
  flex: 1 1 300px;
  min-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  animation: fadeIn 1.2s 0.45s both;
}
.intro__img {
  max-width: 330px;
  width: 100%;
  min-width: 150px;
  border-radius: 28px;
  box-shadow: 0 4px 26px #1c1f2322;
  background: #E7ECF3;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* Анімації */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(36px);}
  100% { opacity: 1; transform: none;}
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1;}
}

@media (max-width: 800px) {
  .intro__container {
    flex-direction: column;
    gap: 24px;
    min-height: unset;
    padding: 30px 8px 18px 8px;
  }
  .intro__image {
    margin-top: 8px;
  }
  .intro__img {
    max-width: 210px;
  }
}
.practices {
  background: #E7ECF3;
  padding: 60px 0 50px 0;
  width: 100%;
  z-index: 1;
  position: relative;
}

.practices__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.practices__title {
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1C1F23;
  margin-bottom: 38px;
  letter-spacing: 0.06em;
  animation: fadeInUp 0.8s 0.1s both;
}

.practices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.practice-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 28px #4BA3FF0C, 0 2px 7px #1C1F2306;
  padding: 34px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  transition: box-shadow 0.26s, transform 0.21s;
  cursor: pointer;
  animation: fadeInUp 0.8s both;
}
.practice-card:hover {
  box-shadow: 0 10px 48px #4BA3FF1C, 0 4px 18px #FFBE3B15;
  transform: translateY(-7px) scale(1.035);
  z-index: 2;
}
.practice-card__icon {
  width: 34px;
  height: 34px;
  color: #4BA3FF;
  background: #F4F8FB;
  border-radius: 50%;
  padding: 7px;
  margin-bottom: 7px;
  box-shadow: 0 2px 9px #4BA3FF17;
  transition: color 0.2s, background 0.21s;
}
.practice-card:hover .practice-card__icon {
  color: #FFBE3B;
  background: #4BA3FF11;
}
.practice-card__name {
  font-family: 'Manrope', sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  color: #1C1F23;
}
.practice-card__desc {
  font-size: 1rem;
  color: #23272A;
  opacity: 0.86;
  min-height: 64px;
}

.practices__btn {
  margin: 0 auto;
  display: block;
  background: linear-gradient(90deg,#4BA3FF 0%,#FFBE3B 100%);
  color: #1C1F23;
  padding: 13px 36px;
  border-radius: 30px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px #4ba3ff18;
  letter-spacing: 0.01em;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.12s;
}
.practices__btn:hover {
  background: linear-gradient(90deg,#FFBE3B 0%,#4BA3FF 100%);
  color: #23272A;
  box-shadow: 0 8px 28px #ffbe3b29;
  transform: scale(1.033);
}

@media (max-width: 800px) {
  .practices__container {
    padding: 0 8px;
  }
  .practices__grid {
    gap: 18px;
  }
  .practice-card {
    padding: 22px 12px 18px 16px;
  }
}
.germany {
  background: #F4F8FB;
  padding: 58px 0 48px 0;
  width: 100%;
  z-index: 1;
  position: relative;
}

.germany__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.germany__title {
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1C1F23;
  margin-bottom: 36px;
  letter-spacing: 0.04em;
  animation: fadeInUp 0.8s 0.13s both;
}

.germany__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 32px;
}

.germany-card {
  background: #E7ECF3;
  border-radius: 18px;
  box-shadow: 0 2px 17px #4BA3FF10;
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  transition: box-shadow 0.19s, transform 0.19s;
  cursor: pointer;
  animation: fadeInUp 0.83s both;
}
.germany-card:hover {
  box-shadow: 0 7px 33px #4BA3FF2C, 0 3px 10px #FFBE3B18;
  transform: translateY(-5px) scale(1.025);
  z-index: 2;
}

.germany-card__icon {
  width: 30px;
  height: 30px;
  color: #4BA3FF;
  background: #fff;
  border-radius: 50%;
  padding: 7px;
  box-shadow: 0 2px 9px #4BA3FF13;
  transition: color 0.17s, background 0.19s;
}
.germany-card:hover .germany-card__icon {
  color: #FFBE3B;
  background: #4BA3FF10;
}

.germany-card__name {
  font-family: 'Manrope', sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  color: #1C1F23;
}
.germany-card__desc {
  font-size: 0.97rem;
  color: #23272A;
  opacity: 0.84;
  min-height: 55px;
}

@media (max-width: 800px) {
  .germany__container {
    padding: 0 8px;
  }
  .germany__grid {
    gap: 18px;
  }
  .germany-card {
    padding: 16px 8px 12px 10px;
  }
}
.about {
  background: linear-gradient(115deg,#F4F8FB 80%,#E7ECF3 100%);
  padding: 56px 0 44px 0;
  width: 100%;
  z-index: 1;
  position: relative;
}

.about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.about__content {
  flex: 1 1 420px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__title {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1C1F23;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.about__subtitle {
  font-size: 1.18rem;
  color: #4BA3FF;
  font-weight: 600;
  opacity: 0.96;
  margin-bottom: 0;
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 0 0 7px 0;
  color: #23272A;
  font-size: 1.06rem;
  line-height: 1.6;
}
.about__list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
}
.about__list li:before {
  content: '•';
  color: #FFBE3B;
  font-size: 1.2rem;
  position: absolute;
  left: 0; top: 0;
}

.about__values-title {
  margin-top: 8px;
  font-weight: 700;
  color: #1C1F23;
  font-size: 1.07rem;
  letter-spacing: 0.03em;
}

.about__values {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.about__values li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #E7ECF3;
  color: #23272A;
  font-size: 1rem;
  border-radius: 13px;
  padding: 7px 17px 7px 10px;
  font-weight: 500;
  box-shadow: 0 2px 8px #4BA3FF10;
  transition: background 0.2s, color 0.2s;
  cursor: default;
}
.about__values li:hover {
  background: #4BA3FF;
  color: #fff;
}

.about__icon {
  width: 21px;
  height: 21px;
  color: #4BA3FF;
  transition: color 0.2s;
}
.about__values li:hover .about__icon {
  color: #FFBE3B;
}

.about__image {
  flex: 1 1 280px;
  min-width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.about__img {
  max-width: 250px;
  width: 100%;
  min-width: 110px;
  border-radius: 21px;
  box-shadow: 0 4px 22px #1c1f2311;
  background: #fff;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: box-shadow 0.2s, transform 0.19s;
}
.about__img:hover {
  box-shadow: 0 9px 36px #4BA3FF22;
  transform: scale(1.04) rotate(-2deg);
}

@media (max-width: 900px) {
  .about__container {
    flex-direction: column;
    gap: 22px;
    padding: 0 8px;
  }
  .about__image {
    margin-top: 8px;
  }
}
.faq {
  background: #E7ECF3;
  padding: 55px 0 42px 0;
}
.faq__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 12px;
}
.faq__title {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  color: #1C1F23;
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;
  letter-spacing: 0.05em;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq__item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px #4BA3FF17;
  overflow: hidden;
  transition: box-shadow 0.19s;
}

.faq__question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 18px 22px 18px 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.08rem;
  color: #23272A;
  background: none;
  border: none;
  outline: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
  gap: 13px;
  position: relative;
}

.faq__icon {
  color: #4BA3FF;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.faq__chevron {
  margin-left: auto;
  color: #4BA3FF;
  width: 21px;
  height: 21px;
  transition: transform 0.23s;
}
.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  background: #F4F8FB;
  color: #23272A;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0 22px;
  transition: max-height 0.34s cubic-bezier(.3,.6,.4,1), padding 0.27s;
  opacity: 0.95;
}
.faq__item.active .faq__answer {
  padding: 15px 22px 17px 22px;
  max-height: 400px;
}

.faq__item.active {
  box-shadow: 0 7px 28px #4BA3FF26;
}

@media (max-width: 600px) {
  .faq__container { padding: 0 2px;}
  .faq__question { font-size: 0.99rem; padding: 14px 11px 14px 9px;}
  .faq__answer { padding: 0 11px;}
  .faq__item.active .faq__answer { padding: 11px 11px 13px 11px;}
}
.contact {
  background: #E7ECF3;
  padding: 60px 0 46px 0;
}
.contact__container {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 14px;
}
.contact__title {
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  color: #1C1F23;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.contact__form {
  background: #fff;
  border-radius: 23px;
  box-shadow: 0 4px 32px #4BA3FF19;
  padding: 36px 27px 27px 27px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: fadeInUp 1s 0.1s both;
}
.contact__fields {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.contact__field {
  display: flex;
  flex-direction: column;
  flex: 1 1 180px;
  gap: 7px;
}
.contact__field--textarea {
  flex: 1 1 100%;
}
.contact__field--captcha {
  flex: 1 1 100%;
  margin-top: 4px;
}
.contact__field label {
  font-size: 1.04rem;
  font-weight: 500;
  color: #1C1F23;
  margin-bottom: 1px;
  letter-spacing: 0.02em;
}
.contact__field input,
.contact__field textarea {
  border: 1.5px solid #E7ECF3;
  border-radius: 10px;
  background: #F4F8FB;
  padding: 11px 13px;
  font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
  color: #23272A;
  outline: none;
  transition: border 0.2s, box-shadow 0.21s;
}
.contact__field input:focus,
.contact__field textarea:focus {
  border-color: #4BA3FF;
  box-shadow: 0 1px 7px #4BA3FF18;
}
.contact__btn {
  margin-top: 6px;
  display: inline-block;
  background: linear-gradient(90deg,#4BA3FF 0%,#FFBE3B 100%);
  color: #1C1F23;
  padding: 13px 44px;
  border-radius: 23px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px #4ba3ff19;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.18s, color 0.17s, transform 0.11s;
}
.contact__btn:hover {
  background: linear-gradient(90deg,#FFBE3B 0%,#4BA3FF 100%);
  color: #23272A;
  box-shadow: 0 8px 22px #ffbe3b21;
  transform: scale(1.022);
}
.contact__submit-wrap {
  text-align: center;
}
.contact__success {
  margin-top: 16px;
  text-align: center;
  color: #4BA3FF;
  font-size: 1.09rem;
  font-weight: 700;
  background: #E7ECF3;
  border-radius: 10px;
  padding: 13px 8px;
  box-shadow: 0 1px 7px #4BA3FF10;
  animation: fadeInUp 0.8s 0.1s both;
}
@media (max-width: 600px) {
  .contact__form { padding: 19px 6px 17px 6px;}
  .contact__title { font-size: 1.28rem;}
}
.cookie-popup {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}

.cookie-popup__content {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #23272A;
  color: #fff;
  border-radius: 19px 19px 0 0;
  box-shadow: 0 -2px 28px #1C1F2377;
  padding: 17px 30px 17px 19px;
  margin: 18px 0 0 0;
  font-size: 1rem;
  pointer-events: auto;
  animation: fadeInUp 0.85s;
}
.cookie-popup__icon i {
  color: #FFBE3B;
  width: 28px;
  height: 28px;
  vertical-align: middle;
}
.cookie-popup__text {
  color: #F4F8FB;
  opacity: 0.97;
}
.cookie-popup__text a {
  color: #4BA3FF;
  text-decoration: underline;
  transition: color 0.19s;
}
.cookie-popup__text a:hover {
  color: #FFBE3B;
}
.cookie-popup__btn {
  margin-left: 17px;
  background: linear-gradient(90deg,#4BA3FF 0%,#FFBE3B 100%);
  color: #23272A;
  border: none;
  border-radius: 11px;
  padding: 8px 22px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  box-shadow: 0 2px 9px #4BA3FF1a;
  cursor: pointer;
  transition: background 0.17s, color 0.14s, transform 0.09s;
}
.cookie-popup__btn:hover {
  background: linear-gradient(90deg,#FFBE3B 0%,#4BA3FF 100%);
  color: #1C1F23;
  transform: scale(1.07);
}

@media (max-width: 600px) {
  .cookie-popup__content {
    padding: 10px 7px 11px 8px;
    font-size: 0.98rem;
    gap: 9px;
  }
  .cookie-popup__btn { padding: 8px 11px;}
}
.pages {
  background: #F4F8FB;
  min-height: 90vh;
  padding: 56px 0 44px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.pages .container {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 36px #4BA3FF13;
  padding: 46px 40px 38px 40px;
  font-family: 'Inter', sans-serif;
  color: #23272A;
  font-size: 1.13rem;
  line-height: 1.7;
  animation: fadeInUp 0.9s;
}

.pages h1 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #4BA3FF;
  margin-bottom: 28px;
  letter-spacing: 0.06em;
  text-align: center;
}

.pages h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  color: #1C1F23;
  font-weight: 700;
  margin: 32px 0 12px 0;
  letter-spacing: 0.03em;
}

.pages p {
  margin: 0 0 16px 0;
  color: #23272A;
}

.pages ul {
  margin: 0 0 18px 0;
  padding-left: 23px;
  color: #23272A;
}
.pages ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 3px;
}

.pages a {
  color: #4BA3FF;
  text-decoration: underline;
  transition: color 0.17s;
  word-break: break-all;
}
.pages a:hover {
  color: #FFBE3B;
}

@media (max-width: 800px) {
  .pages .container {
    padding: 28px 11px 19px 11px;
    font-size: 1rem;
  }
  .pages h1 {
    font-size: 1.23rem;
    margin-bottom: 18px;
  }
  .pages h2 {
    font-size: 1.06rem;
    margin: 22px 0 8px 0;
  }
}
