/* 
 * Help Page Styles
 * 
 * Brand-specific styles only. Bootstrap handles most layout and components.
 * Use Bootstrap utilities wherever possible.
 */

/* Help item (FAQ-style) - Brand-specific hover and open states */
.faq-item {
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: #cbd5e0 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item[open] {
  box-shadow: 0 8px 24px rgba(0, 109, 143, 0.15);
  border-color: #006D8F !important;
  background: #f7fafc;
}

.faq-item summary {
  list-style: none;
}

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

.faq-item summary:hover {
  color: #006D8F;
}

.faq-toggle-icon {
  color: #006D8F;
  font-weight: 300;
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-toggle-icon {
  transform: rotate(45deg);
  color: #AA00CC;
}

/* Support email link - Brand-specific colors */
.support-email-link {
  color: #006D8F;
  transition: color 0.2s ease;
}

.support-email-link:hover {
  color: #AA00CC;
}

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