*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif; 
  background: #ececec;
  color: #111;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #d9d9d9;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
}

.header-container {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* DESKTOP NAV */
.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
}

.site-nav__link {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  color: #111;
  transition: color 0.2s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #f5d300;
  transition: width 0.25s ease;
}

.site-nav__link:hover::after {
  width: 100%;
}

/* RIGHT SIDE */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* LANGUAGE SWITCHER */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 12px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 38px;
  padding: 0 12px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 800;
  color: #111;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-btn:hover {
  transform: translateY(-1px);
}

.lang-btn.active {
  background: #f5d300;
  box-shadow: 0 6px 14px rgba(245, 211, 0, 0.25);
}

/* ACTION BUTTONS */
.site-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  background: #f5d300;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(245, 211, 0, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-btn:hover {
  transform: translateY(-1px);
  background: #ffdf1f;
}

.site-btn--small {
  padding: 0 16px;
}

.site-btn--main {
  padding: 0 22px;
}

/* BURGER */
.burger {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 12px;
  background: #f5d300;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(245, 211, 0, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}

.burger:hover {
  transform: translateY(-1px);
  background: #ffdf1f;
}

.burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #111;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: #d9d9d9;
  transition: max-height 0.35s ease;
}

.mobile-menu.open {
  max-height: 520px;
}

.mobile-menu__container {
  padding-top: 10px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-top {
  margin-bottom: 16px;
}

.mobile-lang-switcher {
  width: max-content;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav__link {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.42);
  color: #111;
  font-size: 17px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-nav__link:hover {
  background: rgba(255, 255, 255, 0.62);
  transform: translateX(2px);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.mobile-actions .site-btn {
  width: 100%;
  min-height: 50px;
  padding: 12px 18px;
  white-space: normal;
}

/* BODY LOCK WHEN MENU OPEN */
body.menu-open {
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .site-nav {
    gap: 26px;
  }

  .site-nav__link {
    font-size: 16px;
  }

  .site-btn--main {
    padding: 0 18px;
  }
}

@media (max-width: 980px) {
  .site-nav,
  .site-actions,
  .header-right .lang-switcher {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .header-container {
    min-height: 70px;
  }

  .site-logo img {
    height: 48px;
  }
}

@media (min-width: 981px) {
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 14px;
    margin-bottom: 20px;
  }

  .header-container {
    min-height: 66px;
  }

  .site-logo img {
    height: 44px;
  }

  .burger {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }

  .lang-btn {
    min-width: 44px;
    height: 36px;
    font-size: 13px;
  }

  .mobile-nav__link {
    font-size: 16px;
  }

  .mobile-actions .site-btn {
    font-size: 15px;
  }
}
.hero-game {
  padding: 34px 0 24px;
}

.hero-game__card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 221, 64, 0.18), rgba(255, 221, 64, 0.05)),
    linear-gradient(180deg, #f7f7f7 0%, #ebebeb 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.hero-game__content {
  position: relative;
  z-index: 2;
}

.hero-game__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-game__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(245, 211, 0, 0.18);
  border: 1px solid rgba(245, 211, 0, 0.45);
  color: #111;
  font-size: 13px;
  font-weight: 800;
}

.hero-game__title {
  margin: 0 0 16px;
  font-size: 46px;
  line-height: 1.04;
  font-weight: 900;
  color: #111;
  max-width: 700px;
  margin-bottom: 10px;
}

.hero-game__text {
  margin: 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.hero-game__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-game__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-game__btn:hover {
  transform: translateY(-2px);
}

.hero-game__btn--primary {
  background: #f5d300;
  color: #111;
  box-shadow: 0 12px 24px rgba(245, 211, 0, 0.26);
}

.hero-game__btn--primary:hover {
  background: #ffdf1f;
}

.hero-game__btn--secondary {
  background: #111;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.hero-game__btn--secondary:hover {
  background: #222;
}

.hero-game__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.hero-game__feature {
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-game__feature strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.3;
  color: #111;
}

.hero-game__feature span {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: #555;
}

.hero-game__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-game__image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 16px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.55));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.hero-game__image {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 1180px) {
  .hero-game__title {
    font-size: 40px;
  }

  .hero-game__features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-game {
    padding: 24px 0 18px;
  }

  .hero-game__card {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 20px;
  }

  .hero-game__title {
    font-size: 34px;
  }

  .hero-game__text {
    font-size: 16px;
  }

  .hero-game__media {
    order: -1;
  }

  .hero-game__image-wrap {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-game__card {
    padding: 16px;
    border-radius: 22px;
  }

  .hero-game__title {
    font-size: 28px;
  }

  .hero-game__badges {
    gap: 8px;
    margin-bottom: 14px;
  }

  .hero-game__badge {
    font-size: 12px;
    min-height: 30px;
    padding: 0 12px;
  }

  .hero-game__actions {
    flex-direction: column;
  }

  .hero-game__btn {
    width: 100%;
    min-height: 52px;
  }
}

.site-footer {
  padding: 26px 0 18px;
  background:
    radial-gradient(circle at top left, rgba(245, 211, 0, 0.08), transparent 32%),
    linear-gradient(180deg, #e7e7e7 0%, #dddddd 100%);
}

.footer-card {
  padding: 28px 28px 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.58));
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* Верхняя часть */
.footer-top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: start;
}

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

.footer-logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-logo img {
  width: auto;
  height: 50px;
  object-fit: contain;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 52px;
  padding: 0 20px;
  margin-bottom: 24px;
  border-radius: 14px;
  background: linear-gradient(180deg, #d22f00 0%, #ad1f00 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 14px 28px rgba(173, 31, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.footer-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(173, 31, 0, 0.28);
}

.footer-safe {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: center;
}

.footer-safe img {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.05);
  opacity: 0.95;
}

/* Правая часть */
.footer-info {
  display: grid;
  grid-template-columns: 220px 220px 1fr;
  gap: 28px;
}

.footer-col {
  min-width: 0;
}

.footer-title {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a,
.footer-links span {
  font-size: 15px;
  line-height: 1.45;
  color: #2f2f2f;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover {
  color: #ad1f00;
}

.footer-license-text {
  margin: 0;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.5;
  color: #6b6b6b;
}

/* Средняя часть */
.footer-middle {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-shield img {
  width: auto;
  height: 72px;
  object-fit: contain;
}

.footer-company p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #1e1e1e;
}

.footer-company p + p {
  margin-top: 4px;
}

/* Нижняя часть */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #4a4a4a;
}

.footer-up {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f5d300;
  color: #111;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(245, 211, 0, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-up:hover {
  transform: translateY(-2px);
  background: #ffdf1f;
}

/* Адаптив */
@media (max-width: 1180px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-info {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col--license {
    grid-column: 1 / -1;
  }

  .footer-license-text {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 20px 0 16px;
  }

  .footer-card {
    padding: 20px 16px 16px;
    border-radius: 22px;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-contact-btn {
    min-width: 150px;
    min-height: 48px;
    margin-bottom: 18px;
    font-size: 14px;
  }

  .footer-info {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-middle {
    align-items: flex-start;
  }

  .footer-shield img {
    height: 60px;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .footer-up {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
}

@media (max-width: 520px) {
  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.content > section,
.content > article,
.content > div {
  width: 100%;
}

.content h2,
.content h3,
.content p,
.content ul,
.content ol,
.content table,
.content blockquote,
.content img {
  margin-top: 0;
}

.content h2,
.content h3,
.content p,
.content ul,
.content ol,
.content blockquote,
.content table {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.content h2 {
  margin-bottom: 18px;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 900;
  color: #111;
}

.content h3 {
  margin-top: 34px;
  margin-bottom: 14px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  color: #1b1b1b;
}

.content h2 + p,
.content h3 + p {
  margin-top: 0;
}

.content p {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.content ul,
.content ol {
  margin-bottom: 22px;
  padding-left: 24px;
}

.content li {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.65;
  color: #333;
}

.content li::marker {
  color: #d4a900;
  font-weight: 700;
}

.content strong {
  font-weight: 800;
  color: #111;
}

.content em {
  font-style: italic;
  color: #444;
}

.content blockquote {
  margin-top: 26px;
  margin-bottom: 26px;
  padding: 22px 24px;
  border-left: 4px solid #f5d300;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  font-size: 19px;
  line-height: 1.7;
  color: #222;
}

.content blockquote p:last-child {
  margin-bottom: 0;
}

.content img {
  display: block;
  width: 100%;
  max-width: 980px;
  height: auto;
  margin: 28px auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

/* Таблица с горизонтальным скроллом */
.content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  margin-top: 24px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  -webkit-overflow-scrolling: touch;
}

.content thead {
  background: rgba(245, 211, 0, 0.22);
}

.content tbody {
  background: transparent;
}

.content tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.content tr:last-child {
  border-bottom: 0;
}

.content th,
.content td {
  min-width: 180px;
  padding: 16px 18px;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  color: #222;
  vertical-align: top;
}

.content th {
  font-weight: 800;
  color: #111;
  white-space: nowrap;
  width: 1%;
}

.content td {
  font-weight: 500;
}

/* Небольшой отступ между соседними блоками */
.content p + h2,
.content ul + h2,
.content table + h2,
.content blockquote + h2 {
  margin-top: 48px;
}

.content p + h3,
.content ul + h3,
.content table + h3,
.content blockquote + h3 {
  margin-top: 34px;
}

/* Адаптив */
@media (max-width: 980px) {
  .content h2,
  .content h3,
  .content p,
  .content ul,
  .content ol,
  .content table,
  .content blockquote,
  .content img {
    max-width: 100%;
  }

  .content h2 {
    font-size: 32px;
  }

  .content h3 {
    font-size: 24px;
  }

  .content p,
  .content li {
    font-size: 17px;
  }

  .content blockquote {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .content h2 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
  }

  .content p,
  .content li {
    font-size: 16px;
    line-height: 1.65;
  }

  .content ul,
  .content ol {
    padding-left: 20px;
  }

  .content blockquote {
    padding: 18px 16px;
    border-radius: 14px;
    font-size: 17px;
  }

  .content th,
  .content td {
    min-width: 150px;
    padding: 14px 14px;
    font-size: 15px;
  }

  .content img {
    margin: 22px auto;
    border-radius: 16px;
  }
}

.faq-section {
  padding: 14px 0 42px;
}

.faq-section h2 {
  margin-bottom: 22px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.68));
  border: 1px solid rgba(245, 211, 0, 0.45);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.07);
  border-color: rgba(245, 211, 0, 0.72);
}

.faq-item.active {
  border-color: rgba(245, 211, 0, 0.9);
  box-shadow: 0 18px 42px rgba(245, 211, 0, 0.12);
}

.faq-question {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px;
  border: 0;
  background: transparent;
  color: #111;
  text-align: left;
  cursor: pointer;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}

.faq-question span:first-child {
  display: block;
  padding-right: 14px;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(245, 211, 0, 0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2.5px;
  border-radius: 999px;
  background: #111;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon {
  background: #f5d300;
  transform: rotate(180deg);
}

.faq-item.active .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.faq-answer__inner {
  padding: 0 24px 24px;
}

.faq-answer p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #343434;
}

.faq-item.active .faq-answer {
  max-height: 260px;
  opacity: 1;
}

@media (max-width: 980px) {
  .faq-question {
    font-size: 20px;
    padding: 20px 20px;
  }

  .faq-answer__inner {
    padding: 0 20px 20px;
  }

  .faq-answer p {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 8px 0 32px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-question {
    padding: 17px 16px;
    font-size: 17px;
    line-height: 1.4;
    gap: 12px;
  }

  .faq-question span:first-child {
    padding-right: 8px;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
  }

  .faq-icon::before,
  .faq-icon::after {
    width: 10px;
  }

  .faq-answer__inner {
    padding: 0 16px 18px;
  }

  .faq-answer p {
    font-size: 15px;
    line-height: 1.65;
  }

  .faq-item.active .faq-answer {
    max-height: 420px;
  }
}