#faq-section {
	background-color:white;
}

h2 {
	color: #000 !important;
	font: normal normal normal 30px/34px 'din-bold';
	margin-top:0px;
	margin-bottom:20px;
}

#faq-section h4 {
	font: normal normal bold 16px/20px 'din-regular' !important;
	margin-top:40px !important;
	color:#555;
}

.faq-item {
  background: #f6f6f6;
  border-radius: 15px;
  box-shadow: 0px 3px 6px #0000001a;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color:#000;
  font: normal normal bold 14px/16px 'din-regular';
}
.faq-question:hover,
.faq-question:focus {
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
  text-decoration: none !important;
  border: none !important;
  color:#000 !important;
}

.faq-question .arrow {
  font-size: 1.2rem;
  color:#753BBD;
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  font: normal normal normal 16px/20px 'din-regular';
  color: #333;
}

.faq-item.active .faq-answer {
  display: block;
}


