/* FAQ.css */
.faq-wrapper {
  font-family: sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  color: #2c3e50;
}

.faq-container {
  margin-top: 30px;
}

.faq-item {
  background: #f9f9f9;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.faq-item summary {
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Chrome/Safari specific fix for summary arrows */
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: #007bff;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  padding-top: 10px;
  color: #555;
}

.faq-item[open] {
  background: #fff;
  border-color: #007bff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}