.faq-wrapper {
  font-family: "poppins", sans-serif;
  color: #000000;
}


.glass-grey{
  background: #F0F0F070;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 80px 0px ; 
}

.faq-title {
  font-size: 36px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 30px;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid #e2e2e2;
  padding: 32px 0;
}

/* HEADER */
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}

/* ICON */
.icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.icon.rotate {
  transform: rotate(180deg);
}

/* CONTENT */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-content.show {
  max-height: 500px;
  margin-top: 12px;
  opacity: 1;
}

/* TEXT */
.faq-content p {
  font-size: 16px;
  margin-bottom: 10px;
}

.faq-content ul {
  padding-left: 18px;
}

.faq-content li {
  font-size: 16px;
  margin-bottom: 6px;
  list-style: disc;
}


/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */

/* ── Tablet (max 1024px) ── */
@media (max-width: 1024px) {
  .faq-title {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .faq-header h3 {
    font-size: 20px;
  }
}

/* ── Small Tablet (max 768px) ── */
@media (max-width: 768px) {
  .faq-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .faq-item {
    padding: 24px 0;
  }

  .faq-header h3 {
    font-size: 18px;
    padding-right: 12px;
  }

  .icon {
    font-size: 18px;
    flex-shrink: 0;
  }

  .faq-content p,
  .faq-content li {
    font-size: 14px;
  }
}

/* ── Mobile (max 480px) ── */
@media (max-width: 480px) {
  .faq-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .faq-item {
    padding: 24px 0;
  }

  .faq-header {
    align-items: center;
  }

  .faq-header h3 {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    padding-right: 10px;
  }

  .icon {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .faq-content p,
  .faq-content li {
    font-size: 13px;
    margin-bottom: 6px;
    line-height: 1.6;
  }

  .faq-content ul {
    padding-left: 14px;
  }

  .faq-content.show {
    margin-top: 10px;
  }
}