/* FAQ Section Styles - No JS Required */
.faq-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #f0c159;
  margin-bottom: 40px;
  font-weight: 700;
}

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

details.faq-item {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(240,193,89,0.2);
  transition: all 0.3s ease;
}

details.faq-item:hover {
  border-color: rgba(240,193,89,0.5);
  box-shadow: 0 4px 20px rgba(240,193,89,0.1);
}

details.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  list-style: none;
  transition: all 0.3s ease;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: #f0c159;
  transition: transform 0.3s ease;
}

details.faq-item[open] summary::after {
  content: '−';
}

details.faq-item summary:hover {
  color: #f0c159;
}

details.faq-item .faq-answer {
  padding: 0 24px 20px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

details.faq-item .faq-answer p {
  margin: 0;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 15px auto 30px;
  line-height: 1.6;
  text-align: center;
}
