.gt-faq {
  padding: 0;
  position: relative;
  z-index: 1;
  background-color: var(--color-bg-navy);
  overflow: hidden;
}

.gt-faq__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 64px 0;
  position: relative;
}

.gt-faq__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.gt-faq__title {
  font-family: var(--font-syne);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
}

.gt-faq__subtitle {
  font-family: var(--font-syne);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

.gt-faq__image {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 600px;
  filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.4));
  pointer-events: none;
  z-index: 1;
}

.gt-faq__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.gt-faq__item {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 16px;
  overflow: hidden;
}

.gt-faq__item--active {
  background-color: #2c1371;
  border: 2px solid #ffffff;
  border-radius: 12px;
}

.gt-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  text-align: left;
  cursor: pointer;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-syne);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  transition: opacity 0.2s;
}

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

.gt-faq__chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  color: #ffffff;
}

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

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

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

.gt-faq__answer-inner {
  padding: 16px 0 0;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-syne);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

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

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

@media (max-width: 1200px) {
  .gt-faq__image {
    width: 500px;
    left: -80px;
  }
}

@media (max-width: 1023px) {
  .gt-faq__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 48px;
  }
  .gt-faq__title {
    font-size: 38px;
  }
  .gt-faq__subtitle {
    font-size: 22px;
  }
  .gt-faq__image {
    display: none;
  }
}

@media (max-width: 767px) {
  .gt-faq__title {
    font-size: 30px;
  }
  .gt-faq__subtitle {
    font-size: 18px;
  }
  .gt-faq__question {
    font-size: 18px;
    line-height: 22px;
  }
  .gt-faq__answer-inner {
    font-size: 14px;
  }
}
