.ttg-faq {
  width: 100%;
}
.ttg-faq__container {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}
.ttg-faq__title {
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 28px;
  text-align: center;
}
.ttg-faq__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.ttg-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: start;
  cursor: pointer;
}
.ttg-faq__question-text {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  transition: color 0.3s ease;
  display: flex;
  gap: 0.3em;
}
.ttg-faq__toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  margin-top: 8px;
}
.ttg-faq__toggle-icon {
  transition: transform 0.3s ease;
}
.ttg-faq__answer {
  display: none;
  margin-top: 12px;
}
.ttg-faq__answer-content {
  font-size: 16px;
  line-height: 1.6;
}
.ttg-faq__answer-content p {
  margin-bottom: 1em;
}
.ttg-faq__answer-content p:last-child {
  margin-bottom: 0;
}
.ttg-faq .active .ttg-faq__toggle-icon {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .ttg-faq__question-text {
    font-size: 16px;
  }
  .ttg-faq__title {
    font-size: 24px;
  }
  .ttg-faq__list {
    gap: 16px;
  }
  .ttg-faq__answer-content p {
    font-size: 14px;
  }
  .ttg-faq__toggle {
    margin-top: 0;
  }
}

/*# sourceMappingURL=faq.css.map*/