/* FAQ page specific styling */

.faq-wrapper {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
}

.faq-wrapper h1 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 16px;
  background-color: #fff;
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 24px;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 12px;
  line-height: 1.5;
}

