.faq-container {
  font-family: "Poppins", sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.wsi_search_box {
  margin-bottom: 20px;
}

.wsi_search {
    padding: 12px !important;
    border-radius: 8px !important;
    border: 1px solid #ddd !important;
    margin-bottom: 20px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px;
  font-size: 20px;
  font-weight: 500;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color:#262626;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 18px;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-question:hover{
	background:#E75012;
	color:#fff !important;
}
	
.faq-item.active .faq-question{
	background:#E75012;
	color:#fff !important;	
	}
	