.elementor-1584 .elementor-element.elementor-element-3c092d4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-f3bf303 */.faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  font-family: "Poppins", sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #2f3e2f;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  background: #f5f7f3;
  border: none;
  cursor: pointer;
  position: relative;
  color: #2f3e2f;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 22px;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #ffffff;
}

.faq-answer p {
  padding: 18px 22px;
  margin: 0;
  color: #555;
  line-height: 1.6;
}/* End custom CSS */