/* FAQ Component Styles */
.faq-section {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}

.faq-title {
  text-align: center;
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
  color: var(--text);
}

.faq-subtitle {
  text-align: center;
  font-size: var(--text-xl);
  color: var(--text-muted);
  margin-bottom: var(--space-3xl);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-md);
}

.faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--business-primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  cursor: pointer;
  transition: var(--transition-normal);
  background: var(--bg-soft);
}

.faq-question:hover {
  background: var(--bg-subtle);
}

.faq-question.active {
  background: var(--business-primary);
  color: var(--text-light);
}

.faq-question h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  margin: 0;
  flex: 1;
}

.faq-question i {
  font-size: var(--text-base);
  transition: var(--transition-normal);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: var(--bg);
}

.faq-answer.active {
  max-height: 200px;
}

.faq-answer p {
  padding: var(--space-lg);
  margin: 0;
  font-size: var(--text-base);
  line-height: var(--line-height-relaxed);
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .faq-question {
    padding: var(--space-md);
  }
  
  .faq-question h3 {
    font-size: var(--text-base);
  }
  
  .faq-answer p {
    padding: var(--space-md);
    font-size: var(--text-sm);
  }
}