.nuoman-faq-section {
  padding: var(--component-gap) 0;
  background-color: var(--bg-color);
}

.nuoman-faq-container {
  width: 100%;
  margin-top: var(--gap-50);
}

.nuoman-faq-content {
  width: 100%;
}

.nuoman-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}

.nuoman-faq-item {
  width: 100%;
}

.nuoman-faq-item-wrapper {
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.nuoman-faq-question-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nuoman-faq-question {
  font-family: var(--font-family);
  font-size: var(--font-18);
  font-weight: 500;
  line-height: normal;
  color: #2D1F18;
  flex: 1;
  transition: color 0.3s ease;
}

.nuoman-faq-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.nuoman-faq-icon svg {
  width: 100%;
  height: 100%;
  color: #222222;
  transition: color 0.3s ease;
}

.nuoman-faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out,
    padding 0.3s ease-out;
}

.nuoman-faq-answer {
  font-family: var(--font-family);
  font-size: var(--font-16);
  font-weight: 400;
  line-height: normal;
  color: #000;
  margin: 0;
  padding: 0 20px 24px;
}

.nuoman-faq-item.is-active .nuoman-faq-question {
  color: var(--color-primary);
}

.nuoman-faq-item.is-active .nuoman-faq-icon {
  transform: rotate(-90deg);
}

.nuoman-faq-item.is-active .nuoman-faq-icon svg path {
  fill: var(--color-primary);
}

.nuoman-faq-item.is-active .nuoman-faq-answer-wrapper {
  max-height: 500px;
}

@media screen and (max-width: 576px) {
  .nuoman-faq-grid {
    grid-template-columns: 1fr;
  }
}