.faq {
  background-color: var(--color-bg-light);
  padding: var(--section-padding-y) 0;
}

.faq__inner {
  max-width: 860px;
  padding: 0 var(--section-padding-x);
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
}

.faq__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -1.28px;
  color: var(--color-dark);
}

.faq__title em {
  font-style: italic;
  font-weight: 400;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background-color: #e8e6e2;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  outline: none;
}

.faq__question-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}

.faq__icon {
  width: 24px;
  height: 24px;
}

.faq__icon svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}

.faq__item.is-open .faq__icon svg {
  transform: rotate(45deg);
}

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

.faq__item.is-open .faq__answer {
  max-height: 400px;
}

.faq__answer-inner {
  padding: 0 24px 20px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-80);
}

@media (max-width: 1199px) {
  .faq__inner {
    max-width: 100%;
  }

  .faq__title {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .faq__title {
    font-size: 36px;
    letter-spacing: -0.5px;
  }

  .faq__question {
    padding: 16px;
  }

  .faq__question-text {
    font-size: 18px;
  }

  .faq__answer-inner {
    font-size: 15px;
  }
}
