.faq-section {
  padding: 50px 0;
}

.faq-section h2 {
  font-size: 28px;
  margin-bottom: 25px;
}

.faq-item {
  border: 1px solid #eee;
  margin-bottom: 8px;
}

.faq-question {
  display: block;
  padding: 14px 18px;
  /* color: #7fbf2f; */
  color: red;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

.faq-question .icon {
  font-size: 20px;
  margin-right: 10px;
  color: #666;
}

.faq-question.active {
  color: #7fbf2f;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  background: #fafafa;
  color: #555;
}

.faq-answer.show {
  display: block;
}

/* bullets ON */
.faq-answer li {
  list-style-type: disc;        /* ● bullet */
  list-style-position: outside;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* remove empty bullet (optional) */
.faq-answer li:empty {
  display: none;
}

/* ================= FAQ SECTION ================= */
.faq-section {
  padding: 50px 15px;
}

.faq-section h2 {
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 400;
}

/* FAQ ITEM */
.faq-item {
  border: 1px solid #eee;
  margin-bottom: 10px;
  background: #f8f8f8;
}

/* QUESTION (ANCHOR) */
.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  color: #7fbf2f;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.5;
  font-weight: 400;
}

.faq-question .icon {
  font-size: 20px;
  color: #666;
  min-width: 20px;
}

/* ACTIVE */
.faq-question.active {
  color: #7fbf2f;
}

/* ANSWER */
.faq-answer {
  display: none;
  padding: 15px 22px;
  background: #fafafa;
  color: #555;
  font-size: 15px;
}

.faq-answer.show {
  display: block;
}

.faq-answer li {
  /* list-style: none; */
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .faq-section h2 {
    font-size: 24px;
  }

  .faq-question {
    font-size: 15px;
    padding: 12px 16px;
  }

  .faq-answer {
    font-size: 14px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
  .faq-section h2 {
    font-size: 20px;
  }

  .faq-question {
    font-size: 14px;
    padding: 12px 14px;
    gap: 10px;
  }

  .faq-question .icon {
    font-size: 18px;
  }

  .faq-answer {
    padding: 12px 16px;
    font-size: 14px;
  }
}


.color{
    background-color: #f8f8f8;
}