/* ================= FAQ Section ================= */
.faq-section {
  background: #11161a;
  color: #e0e0e0;
  padding: 80px 20px;
  font-family: "Inria Serif", serif;
}

.faq-title {
  text-align: center;
  font-family: "Inria Serif", serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -0.02em;
  margin-bottom: 50px;
  color: #fff;
}

/* List Wrapper */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

/* Items */
.faq-item {
  border-bottom: 1px solid #333;
  margin-bottom: 12px;
}

/* Question Button */
.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 18px 0;
  font-family: "Inria Serif", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Arrow Icon */
.arrow {
  transition: transform 0.3s ease;
  stroke: #4f5d64;
  flex-shrink: 0;
}
.faq-item.active .arrow {
  transform: rotate(180deg);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 400px; /* bigger for lists */
  margin-bottom: 15px;
}
.faq-answer p {
  font-family: "Inria Serif", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #6b7280;
  margin: 0 0 10px;
}

/* Answer list */
.faq-answer ul {
  list-style-type: disc;
  padding-left: 25px;
  margin: 8px 0;

}
.faq-answer li {
  margin-bottom: 24px;
  line-height: 1.6;
  font-family: "Inria Serif", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #6B7280;
}

/* ================= Responsive ================= */

/* Tablets */
@media (max-width: 900px) {
  .faq-section {
    padding: 60px 16px;
  }
  .faq-title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 40px;
  }
  .faq-question {
    font-size: 18px;
    line-height: 26px;
  }
  .faq-answer p,
  .faq-answer li {
    font-size: 15px;
    line-height: 22px;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .faq-section {
    padding: 50px 20px;
  }
  .faq-title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 30px;
  }
  .faq-question {
    font-size: 16px;
    line-height: 24px;
    padding: 14px 0;
  }
  .faq-answer p,
  .faq-answer li {
    font-size: 14px;
    line-height: 20px;
  }
  .arrow {
    width: 18px;
    height: 18px;
  }
}
