.elementor-1235 .elementor-element.elementor-element-5a06766{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-30837b2 *//* === FAQ SECTION FIXED === */
.faq-section {
  background-color: #0B0E17 !important;
  color: #E0E0E0;
  font-family: 'Inter', sans-serif;
  padding: 100px 8%;
  margin: 0;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Verwijder witte achtergrond van parent containers */
html, body, .site, .content-area, .entry-content, .container, .page, .page-content {
  background: #0B0E17 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Header styling */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-subtitle {
  color: #FFD35A;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
}

.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #FFFFFF;
  position: relative;
}

.faq-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #FFD35A 0%, rgba(255,211,90,0) 100%);
  margin: 20px auto 0;
}

/* FAQ layout */
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 211, 90, 0.3);
  padding: 25px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  color: #FFD35A;
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-icon {
  font-size: 22px;
  color: #FFD35A;
  transition: transform 0.3s ease;
}

/* Answers */
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  margin-top: 10px;
}

.faq-answer p, 
.faq-answer ul {
  font-size: 16px;
  line-height: 1.7;
  margin: 10px 0;
}

.faq-answer ul {
  margin-left: 20px;
  list-style-type: disc;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-top: 10px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #FFFFFF;
}

/* 📱 Mobiel fix */
@media (max-width: 768px) {
  .faq-section {
    padding: 70px 20px;
  }

  .faq-title {
    font-size: 32px;
  }
}/* End custom CSS */