/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 07 2025 | 15:07:18 */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  font-family: sans-serif;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
}

.faq-question {
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-question::marker {
  display: none; /* Remove native disclosure triangle */
}

.chevron {
  transition: transform 0.3s ease;
}

.faq-item[open] .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding-top: 0.5rem;
  color: #444;
}
