body {
  font-family: Arial;
  background: #f5f5f5;
}

.faq-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 24px 0px 5px 0px;
}
.faq-container {
  max-width: 835px;
  margin: 20px auto;
}

.faq-header {
  margin: 24px 0px 5px 0px;
  font-size: 20px;
  font-weight: 700;
}
/* SECTION */
.faq-section {
  background: #fff;
  margin-bottom: 10px;
}

.faq-title {
  padding: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
}

/* SECTION ARROW */

.arrow::before,
.q-arrow::before {
  /* content: "▼"; /* DOWN */
  /* font-size: 14px;  */

  content: "";
  display: inline-block;
  width: 12px; /* adjust based on your image */
  height: 12px;
  background-image: url("/wp-content/themes/campbells-child-theme/dist/images/acc-down-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Rotate when active */

.faq-section.active .arrow::before,
.faq-item.active .q-arrow::before {
  /* content: "▲";  */
  content: "";
  display: inline-block;
  width: 12px; /* adjust based on your image */
  height: 12px;
  background-image: url("/wp-content/themes/campbells-child-theme/dist/images/acc-up-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* BODY */
.faq-body {
  display: none;
  background: #fff;
}

.faq-section.active .faq-body {
  display: block;
}

/* QUESTIONS */
.faq-item {
  border-top: 1px solid #ccc;
}

.faq-question {
  padding: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

/* ANSWER */
.faq-answer {
  padding: 12px;
  display: none;
  background: #fff;
}

.faq-item.active .faq-answer {
  display: block;
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 768px) {
  #faq-container {
    margin: 16px !important;
  }
  .faq-header h2 {
    margin-top: 16px;
  }
}
