.gt-faq {
  padding: 48px 0;
}

.gt-faq__title {
  font-family: "Oxanium", sans-serif;
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 1.4px;
  line-height: 54px;
}

.gt-faq__grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.gt-faq__col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gt-faq__item {
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 18px;
  overflow: hidden;
}

.gt-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 70px;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s, background-color 0.2s;
  font-family: "Oxanium", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 29.7px;
  color: var(--color-bg-light);
  background-color: #ffffff;
}

.gt-faq__item--active .gt-faq__question {
  background-color: var(--color-bg-light);
  color: #ffffff;
}

.gt-faq__question:hover {
  opacity: 0.9;
}

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

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

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

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

.gt-faq__answer-inner {
  padding: 0 70px 24px;
  background: var(--color-bg-light);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
}

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

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

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

  .gt-faq__title {
    font-size: 28px;
    margin-bottom: 24px;
    line-height: 36px;
    letter-spacing: 0.8px;
  }

  .gt-faq__grid {
    gap: 12px;
  }

  .gt-faq__question {
    font-size: 16px;
    padding: 16px 20px;
    line-height: 1.4;
  }

  .gt-faq__answer-inner {
    padding: 0 20px 16px;
    font-size: 14px;
    line-height: 1.6;
  }
}
