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

.tg-faq__title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.tg-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
}

.tg-faq__item {
  background-color: #030f28;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: background 0.3s;
}

.tg-faq__item--active {
  background: linear-gradient(
    67.84deg,
    rgba(46, 51, 147, 0.1) -1.82%,
    rgba(28, 250, 252, 0.1) 106.59%
  );
}

.tg-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.tg-faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.tg-faq__item--active .tg-faq__chevron {
  transform: rotate(180deg);
}

.tg-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.tg-faq__item--active .tg-faq__answer {
  max-height: 500px;
}

.tg-faq__answer-inner {
  padding: 0 20px 20px 56px;
  color: #ffffffcc;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.tg-faq__answer-inner p {
  margin-bottom: 8px;
}

.tg-faq__answer-inner p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .tg-faq {
    padding: 32px 0;
  }

  .tg-faq__title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .tg-faq__list {
    gap: 10px;
  }

  .tg-faq__question {
    font-size: 15px;
    padding: 14px 16px;
  }

  .tg-faq__answer-inner {
    padding: 0 16px 16px 52px;
    font-size: 13px;
  }
}
