/* FAQ list */
.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-align: left;
  gap: 16px;
}
.faq-content {
  padding: 0 24px 20px;
  display: none;
}
.faq-content.open {
  display: block;
}
.faq-icon {
  transition: transform 0.2s;
  flex-shrink: 0;
  color: #059669;
}
.faq-icon.rotate {
  transform: rotate(45deg);
}
