.tcx-terms {
  font-family: "Inter", sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  margin-top: 50px;
}

.tcx-wrap {
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 12px;
  padding: 40px 0;
}

/* === Typography === */
.tcx-wrap h1 {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.tcx-wrap h2 {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #111;
}

.tcx-wrap p {
  font-family: "Inter", sans-serif;
  margin-bottom: 16px;
  font-size: 0.8rem;
}

.tcx-wrap ul {
  font-family: "Inter", sans-serif;
  margin-left: 20px;
  margin-bottom: 16px;
}

.tcx-wrap li {
  font-family: "Inter", sans-serif;
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.tcx-wrap a {
  font-family: "Inter", sans-serif;
  color: #7b7b7b;
  text-decoration: underline;
}

.tcx-date {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  color: #666;
  margin-bottom: 10px;
  display: inline-block;
}

/* === Responsive === */
@media (max-width: 768px) {
  .tcx-wrap {
    padding: 24px 20px;
  }

  .tcx-wrap h1 {
    font-size: 1.6rem;
  }

  .tcx-wrap h2 {
    font-size: 1.1rem;
  }

  .tcx-wrap p,
  .tcx-wrap li {
    font-size: 0.95rem;
  }
}

/* === FAQ (renamed) === */
.tcx-faq-answer {
  display: none;
}

.tcx-faq-item.tcx-active .tcx-faq-answer {
  display: block;
}

.tcx-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.3s ease;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-top: 10px;
  padding: 0; /* щоб плавно розгорталось */
}

.tcx-faq-item.tcx-active .tcx-faq-answer {
  opacity: 1;
  padding-top: 8px;
}

/* === Universal page container (renamed) === */
.tcx-page {
  width: 100%;
  max-width: 1200px; /* змінюй під свій дизайн */
  margin: 0 auto;
  padding: 0;
}

/* Адаптивність для мобільних */
@media (max-width: 999px) {
  .tcx-page {
    padding: 0 16px; /* трохи менше відступів на телефонах */
  }
}

/* Контейнер для FAQ у політиках (renamed) */
.tcx-faq-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Контейнер */
.faq-container-privacy {
  max-width: 1200px;
  margin: 0 auto;
}