body {
  font-family: 'Inter', sans-serif;
  background-color: #fefefe;
  color: #222;
  margin: 0;
}

/* ===============================TEMPORARY HIDE ======================= */

.cookie-banner {
  display: none !important;
}


.faq-platform-tabs {
  display: flex;
  gap: 12px;
  margin: 20px 0 40px;
}

.faq-platform-tab {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  color: #777;
  background: #f2f2f2;
  transition: all 200ms ease;
}

.faq-platform-tab:hover {
  color: #000;
}

.faq-platform-tab.active {
  background: #eb870f;
  color: #fff;
  font-weight: 600;
}

.faq-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px;
  line-height: 1.6;
}

.faq-page__title {
  font-size: 32px;         /* global h1 size */
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #111;
}

.faq-section {
  margin-bottom: 48px;
}

.faq-section__title {
  font-size: 22px;          /* global h2 size */
  color: #eb870f;
  margin-bottom: 24px;
  border-left: 6px solid #eb870f;
  padding-left: 16px;
  font-weight: 600;
}

.faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 16px 20px;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent; /* iOS tap fix */
}

.faq-item[open] {
  border-color: #eb870f;
  background-color: #fcf9f4;
}

.faq-item__question {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  cursor: pointer;
}

.faq-item__answer {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

details summary::-webkit-details-marker {
  display: none;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .faq-page {
    padding: 32px 16px;
  }

  .faq-page__title {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .faq-section__title {
    font-size: 20px;
    padding-left: 12px;
    margin-bottom: 20px;
  }

  .faq-item {
    padding: 14px 16px;
  }

  .faq-item__question {
    font-size: 16px;
  }

  .faq-item__answer {
    font-size: 15px;
  }
}