:root{
  --appColor:#008037;
  --header_active_option:#008037;
  --header_inactive_option:#0f172a;
  --secondary_color:#1e2a38;
  --secondary_varient_color:#232a36;
}

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background-color: #ffffff;
  color:black;
}

/* FAQ Section */

.faq{
    width: 100%;
    background-color: #f4f4f4;
}
.faq .container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}
.faq-container {
  width: 90%;
}
.section-header{
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.section-header h2{
  font-weight: bold;
  color: var(--appColor);
  font-size: 28px;
}
.faq-item {
  padding: 18px 15px;
  cursor: pointer;
  background-color: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question h3 {
    margin-bottom: 0;
    font-size: 17px;
    color: black;
    font-weight: bold;
    }
    .faq_answer_wrapper{
      margin-left: 20px;
    }
    .faq_answer_wrapper h3{
      font-size: 14px;
      font-weight: bold;
      color: black;
    }
    .faq_answer_wrapper ul{
      list-style-type: circle;
      color: black;
      margin: 0;
      margin-bottom: 10px;
    }
    .faq_answer_wrapper ul, .faq_answer_wrapper p{
      margin-left: 20px;
      color: black;
      font-size: 14px;
    }
.faq-question i {
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  margin-top: 10px;
  color: #444;
}
.faq-item.active .faq-answer {
  display: block;
}