/* =========================================
   18. FAQ PAGE STYLES & ACCORDION
   ========================================= */
.faq-category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  color: var(--gold);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}
details.faq-accordion {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}
details.faq-accordion:hover {
  border-color: rgba(217, 156, 46, 0.3);
  background: rgba(255, 255, 255, 0.04);
}
details.faq-accordion[open] {
  border-color: rgba(217, 156, 46, 0.5);
  background: rgba(255, 255, 255, 0.05);
}
summary.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none; /* Hide default arrow */
  color: #fff;
  transition: color 0.3s;
}
summary.faq-summary::-webkit-details-marker {
  display: none; /* Hide arrow in WebKit */
}
summary.faq-summary:hover {
  color: var(--gold);
}
summary.faq-summary .faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--gold);
}
details.faq-accordion[open] summary.faq-summary .faq-icon {
  transform: rotate(45deg);
}
.faq-content {
  padding: 0 20px 20px;
  color: #c1bdb5;
  line-height: 1.6;
  font-size: 15px;
  animation: faqFadeIn 0.3s ease-out;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

