/* FAQ Page Styles - Matching site design */

/* Hero Section - Dark background like portfolio/contact */
.page-hero {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: #ffffff;
  padding: 100px 0 60px;
  text-align: center;
  margin-bottom: 0;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.page-hero p {
  font-size: 1.25rem;
  color: #ffffff;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #ffffff;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* FAQ Content Section */
.faq-content {
	padding: 60px 0;
	background: #f8fafc;
}

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

/* FAQ Items */
.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.faq-page {
    padding-top: 100px;
    min-height: 100vh;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #1e293b;
  transition: background 0.2s ease;
  font-size: 1.1rem;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question .icon {
  transition: transform 0.3s ease;
  color: #3b82f6;
  font-size: 1.2rem;
}

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

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

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  color: #475569;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

/* CTA Section */
.faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid #e2e8f0;
}

.faq-cta h3 {
  margin-bottom: 1rem;
  color: #1e293b;
  font-size: 1.5rem;
}

.faq-cta p {
  color: #64748b;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 80px 0 40px;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 1.25rem;
  }
}
