.faq-hero {
  padding: 3rem 0 1rem;
  box-shadow:0 0 10px rgba(0,0,0,.3);
}

.faq-grid {
  margin-top:30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-category {
  background:#fff;
  border-radius:1rem;
  box-shadow:0 0 10px rgba(0,0,0,.05);
  padding:1.5rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.faq-category:hover {
  transform: translateY(-3px);
  box-shadow:0 6px 14px rgba(0,0,0,.08);
}

.faq-category h2 {
  font-size:1.2rem;
  color:#222;
  margin-bottom:1rem;
  display:flex;
  align-items:center;
  gap:0.5rem;
}
.faq-category h2 i {
  color:#646464;
  font-size:1rem;
}

.faq-item summary {
  font-weight:600;
  cursor:pointer;
  padding:0.4rem 0;
  list-style:none;
}
.faq-item summary i {
  margin-right:0.4rem;
  color:#888;
}
.faq-item p {
  font-size:0.9rem;
  color:#555;
  margin:0.3rem 0 0.6rem;
}

.faq-list {
  border-top:1px solid #e6e6e6;
  padding-top:0.6rem;
}

.faq-cta {
    background:#fff;
  margin:3rem 0 2rem;
}

.contact-tooltip-btn {
  position: relative;
  cursor: pointer;
}

/* Tooltip zelf */
.contact-tooltip {
  position: absolute;
  bottom: 120%;            /* boven de knop */
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #111;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 50;
}

#contactSupportBtn {
  position: relative;
  cursor: pointer;
}

/* ============================================================
   FAQ PAGE — RESPONSIVE FIXES
   ============================================================ */


/* ============================
   TABLET (≤ 900px)
============================ */
@media (max-width: 900px) {

  .faq-hero {
    padding: 2.4rem 0 1rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .faq-category {
    padding: 1.3rem;
  }

  .faq-category h2 {
    font-size: 1.15rem;
  }

  .faq-item summary {
    font-size: 0.95rem;
  }

  .faq-item p {
    font-size: 0.9rem;
    line-height: 1.45;
  }
}


/* ============================
   MOBILE (≤ 600px)
============================ */
@media (max-width: 600px) {

  .faq-hero {
    padding: 1.8rem 0 0.8rem;
  }

  .faq-grid {
    gap: 1rem;
  }

  .faq-category {
    padding: 1.1rem 1.2rem;
    border-radius: 0.9rem;
  }

  .faq-category h2 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .faq-category h2 i {
    font-size: 0.95rem;
  }

  .faq-item summary {
    padding: 0.35rem 0;
    font-size: 0.9rem;
  }

  .faq-item p {
    font-size: 0.85rem;
    margin-bottom: 0.55rem;
  }

  .faq-list {
    padding-top: 0.5rem;
  }

  /* Tooltip kleiner & veiliger op mobiel */
  .contact-tooltip {
    padding: 10px 14px;
    font-size: 13px;
    max-width: 230px;
    white-space: normal;
    text-align: center;
  }
}


/* ============================
   SMALL MOBILE (≤ 430px)
============================ */
@media (max-width: 430px) {

  .faq-hero {
    padding: 1.6rem 0 0.6rem;
  }

  .faq-category {
    padding: 1rem;
  }

  .faq-category h2 {
    font-size: 1.05rem;
    gap: 0.4rem;
  }

  .faq-item summary {
    font-size: 0.85rem;
  }

  .faq-item p {
    font-size: 0.8rem;
  }

  .contact-tooltip {
    max-width: 200px;
    padding: 8px 12px;
    font-size: 12.5px;
  }
}
