/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Apply Poppins to FAQ wrapper */
.vast-faq-wrapper {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Question styles */
.vast-faq-question {
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  padding: 15px 20px;
  margin: 0;
  background: #f9f9f9;
  border-radius: 6px;
  border: 1px solid #ddd;
  transition: background 0.3s ease;
}

.vast-faq-question:hover {
  background: #f1f1f1;
}

/* Answer styles */
.vast-faq-answer {
  font-weight: 400;
  font-size: 15px;
  padding: 15px 20px;
  margin-top: -1px;
  border: 1px solid #eee;
  border-top: none;
  border-radius: 0 0 6px 6px;
  background-color: #fff;
  display: none;
}

/* Active state for open FAQ */
.vast-faq-item.active .vast-faq-answer {
  display: block;
}

.vast-faq-item + .vast-faq-item {
  margin-top: 15px;
}