/* Container */
.project-faq .faq-accordion {
  border-top: 1px solid #e5e5e5;
}

/* Item */
.project-faq .faq-item {
  border-bottom: 1px solid #e5e5e5;
}

/* Vraag-knop */
.project-faq .faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: #24315e;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease;
}

.project-faq .faq-question:hover {
  background-color: #2a396d;
}

/* Pijltje */
.project-faq .faq-question::after {
  content: "▼";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s ease;
  font-size: 0.9rem;
  opacity: 0.7;
}

.project-faq .faq-question[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Antwoord */
.project-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.project-faq .faq-answer-inner {
  padding: 1rem 1.25rem;
  background: #24315e;
}

.faq-answer-inner a {
  color: #c2c2c2;
  font-weight: 400;
  text-decoration: underline;
}

.faq-answer-inner a:hover {
  color: #c2c2c2;
}