/* FAQ Page Specific Styles */
.page-header {
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header h1 { font-size: 3.5rem; margin-bottom: 15px; }
.page-header p { color: var(--text-muted); font-size: 1.2rem; }
.pt-0 { padding-top: 0; }

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

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease;
}

.faq-answer p {
  color: var(--text-muted);
  padding-bottom: 0;
  margin: 0;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  /* maxHeight is handled via JS to allow smooth expansion */
}

.faq-item.active .faq-answer p {
  padding-bottom: 20px;
}

.contact-prompt {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
}
