/* Filterbalk */
.faq-filter {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.faq-filter-btn {
  padding: 8px 14px 6px 14px;
  border: none;
  background: #2b517a;
  color: white;
  cursor: pointer;
  border-radius: 10px;
  font-family: 'Futura Bold', sans-serif;
  text-transform: uppercase;
}
.faq-filter-btn.active {
  background: #71AAFB;
  color: #2b517a;
}

/* Lijst */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
  font-family: 'Source Sans 3'!important;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0px 20px 0px;
  cursor: pointer;
  font-size: 1rem;
  background: none;
  border: none;
  font-weight: bold;
  font-size: 20px;
}

.faq-item:not(:last-child){
    border-bottom: 1px solid grey;  
}

.faq-question.active {
    border-bottom: 0px;
}
.faq-answer {
  padding: 0px 0px 20px 0px;
  font-size: 20px;
  line-height: 1.2;
}

.faq-answer:not(:last-child){
  border-bottom: 1px solid grey ;
}
