/* ===== Дві колонки FAQ + SEO ===== */
.extra {
	margin-top: 45px;
}

.extra__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

/* Загальні секції */
.extra__seo p {
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 14px;
}


/* FAQ в правій колонці */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  /* background: linear-gradient(180deg, #33383a 0%, #1f2022 100%); */
  background-color: #33383a;
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
}

.faq__icon {
  color: var(--chinazes-color);
  font-size: 16px;
  margin-left: 10px;
  transition: transform 0.2s ease;
}

.faq__item[open] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  margin-top: 8px;
  color: #ccc;
  line-height: 1.6;
}

/* Адаптив: на мобільному — блоки один під одним */
@media (max-width: 900px) {
  .extra__grid {
    grid-template-columns: 1fr;
  }

  .extra__faq .section-subtitle,
  .extra__seo .section-subtitle {
    text-align: center;
  }
}

/* Плавна анімація FAQ */
.faq__content {
  overflow: hidden;
  height: 0;                 /* початково закрито */
  opacity: 0;
  transition: height 300ms ease, opacity 300ms ease;
}

/* Красива іконка */
.faq__icon {
  color: var(--chinazes-color);
  font-size: 16px;
  margin-left: 10px;
  transition: transform 0.2s ease;
}
.faq__item[open] .faq__icon {
  transform: rotate(180deg);
}

/* Доступність: якщо користувач не любить анімації — миттєво */
@media (prefers-reduced-motion: reduce) {
  .faq__content {
    transition: none;
  }
}