/* FAQ Styles */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border, #e5e7eb);
}

.faq-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary, #111827);
}

.faq-header p {
  font-size: 1.125rem;
  color: var(--text-secondary, #6b7280);
}

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

.faq-item {
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
  border-color: var(--primary, #6366f1);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary, #111827);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--primary, #6366f1);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary, #6366f1);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-secondary, #6b7280);
  line-height: 1.8;
  font-size: 1rem;
}

.faq-answer p {
  margin: 0;
}

.faq-cta {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.faq-cta h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.faq-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.faq-cta a {
  color: white;
  text-decoration: underline;
}

.faq-cta .btn {
  background: white;
  color: #6366f1;
  border: none;
}

.faq-cta .btn:hover {
  background: rgba(255, 255, 255, 0.95);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-container {
    padding: 1rem;
  }

  .faq-header h1 {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1rem;
  }

  .faq-answer {
    padding: 0 1rem 1rem 1rem;
  }
}

