.neumorph-text {
  color: var(--foreground);
  text-shadow: 1px 1px 1px var(--shadow-light), -1px -1px 1px var(--shadow-dark);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.section-title {
  padding-top: 12px;
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border-bottom: 1px solid var(--accent);
}

.faq-question {
  width: 100%;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: var(--foreground);
  font-weight: 500;
  text-align: left;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question svg {
  transition: transform 0.3s ease;
}

.faq-question.active svg {
  transform: rotate(180deg);
}

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

.faq-answer.open {
  max-height: 200px;
  padding-bottom: 12px;
}

.faq-answer-content {
  color: var(--foreground);
  opacity: 0.8;
  line-height: 1.5;
  font-size: 0.9rem;
}