/* ==== FAQ Base Container (applies everywhere) ==== */
.faq,
.faq-section,
.category-faq {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==== Title ==== */
.faq h2,
.faq-title {
  font-family: 'Playfair Display', serif;
  text-align: left;
  margin: 25px 0;
  font-size: 40px;
  font-weight: 400;
  color: #222;
  border-bottom: 1px solid #000000;
}

/* ==== List ==== */
.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.faq-list > li,
.faq-list > .faq-item {
  list-style: none;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  line-height: 1.6;
}
.faq-list > li:last-child,
.faq-list > .faq-item:last-child {
  border-bottom: 0;
}

/* ==== Question (static now) ==== */
.faq-question {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  padding: 0 0 0.5rem 0;
  text-align: left;
  color: #1c1e21;
  cursor: default;
  border: none;
  background: none;
}

/* remove toggle icon */
.faq-question::after {
  content: none !important;
}

/* ==== Answer (always visible) ==== */
.faq-answer {
  display: block !important;
  opacity: 1 !important;
  margin-top: 8px;
  color: #555;
  font-size: 18px;
  line-height: 1.6;
}

/* ==== Mobile overrides ==== */
@media (max-width: 767px) {
  .faq, .faq-section, .category-faq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 320px;
  }
  .faq h2, .faq-title {
    font-size: 20px;
    text-align: center;
  }
  .faq-question {
    font-size: 15px;
  }
  .faq-answer {
    font-size: 13px;
    line-height: 1.5;
  }
  .faq-list {
    margin: 1px;
    padding: 0;
    list-style: none;
  }
  .faq-list > li,
  .faq-list > .faq-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    line-height: 1.6;
  }
}

/* ==== Mid-Desktop Adjustment (for 950px width sweet spot) ==== */
@media (max-width: 1200px) and (min-width: 950px) {
  .faq,
  .faq-section,
  .category-faq {
    max-width: 950px;
    margin: 0 auto; 
  }

  .faq h2,
  .faq-title {
    font-size: 34px; 
  }

  .faq-question {
    font-size: 20px;
  }

  .faq-answer {
    font-size: 16px;
  }
}


/* ---------- Mobile responsive (Tablet / iPad) ---------- */
@media (min-width: 768px) and (max-width: 1024px) {
  .faq,
  .faq-section,
  .category-faq {
    max-width: 700px;
    margin: 0 auto; 
  }

  .faq h2,
  .faq-title {
    font-size: 28px; 
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer {
    font-size: 16px;
  }
}