.faq-content {
  max-width: 50rem;
  margin: 0 auto;
}

.faq-category-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--zinc-900);
}

.faq-category-list { margin-bottom: 3rem; }

.faq-list { display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--zinc-200);
  transition: border-color 0.3s;
}

.faq-item:hover { border-color: var(--emerald-100); }
.faq-item-open { border-color: var(--emerald-200); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question-text {
  font-size: 1.125rem;
  font-weight: 700;
  padding-right: 2rem;
  transition: color 0.3s;
  color: var(--zinc-900);
}

.faq-item-open .faq-question-text { color: var(--emerald-700); }

.faq-icon {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--zinc-100);
  color: var(--zinc-600);
  transition: all 0.3s;
  flex-shrink: 0;
}

.faq-item-open .faq-icon {
  background-color: var(--emerald-100);
  color: var(--emerald-600);
  transform: rotate(180deg);
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-open .faq-answer-wrapper { grid-template-rows: 1fr; }
.faq-answer { overflow: hidden; }

.faq-answer-content {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  color: var(--zinc-600);
  line-height: 1.75;
  border-top: 1px solid var(--zinc-100);
}
