/* --- FAQ Accordion --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  text-align: left;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-text-dark);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background-color: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
  font-size: 1.25rem;
  font-weight: bold;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  transform: rotate(45deg); /* Flips + to x */
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive adjust */
@media (max-width: 600px) {
  .faq-header {
    font-size: 1.05rem;
    padding: 1.25rem;
  }
  .faq-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
}
