/* FAQ Styles - Shared between pages */
.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item:hover {
  border-color: rgba(202, 143, 71, 0.25) !important;
  box-shadow: 0 8px 30px rgba(202, 143, 71, 0.08);
  transform: translateY(-2px);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary {
  transition: color 0.3s;
}

.faq-item:hover summary {
  color: #CA8F47;
}

.faq-item ul {
  list-style-type: disc;
}

.faq-item li {
  margin-bottom: 0.5rem;
}

.faq-item strong {
  color: #1a2744;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-item {
    padding: 1.5rem !important;
  }
  
  .faq-item summary {
    font-size: 1rem !important;
  }
}
