.php-faq-section {
  background-color: #ffffff;
  padding: 105px 0 99px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.php-faq-heading {
  margin: 0 0 40px;
  font-family: 'Rockwell', 'Rockwell Nova', Georgia, serif;
  font-weight: 700;
  font-size: 35px;
  line-height: normal;
  color: #112444;
  text-align: center;
}

/* ── FAQ list ── */
.php-faq-list {
  display: flex;
  flex-direction: column;
  width: 780px;
  max-width: 100%;
}

/* ── Each item ── */
.php-faq-item {
  background-color: #ffffff;
  padding: 20px 21px;
  cursor: pointer;
  user-select: none;
}

.php-faq-item--alt {
  background-color: #ecf2f8;
}

.php-faq-item-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.php-faq-item-text {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.php-faq-question {
  margin: 0;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #000000;
}

.php-faq-answer {
  margin: 0;
  font-family: 'League Spartan', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  overflow: hidden;
  max-height: 300px;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
  opacity: 1;
}

.php-faq-answer--hidden {
  max-height: 0;
  opacity: 0;
}

/* ── Chevron ── */
.php-faq-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 6px;
  transition: transform 0.3s ease;
}

.php-faq-chevron--open {
  transform: rotate(180deg);
}

/* ════════════════════════════════
   Tablet  ≤ 1024px
════════════════════════════════ */
@media (max-width: 1024px) {
  .php-faq-section {
    padding: 72px 48px;
  }

  .php-faq-list {
    width: 100%;
  }

  .php-faq-heading {
    font-size: 28px;
  }

  .php-faq-question {
    font-size: 19px;
  }

  .php-faq-answer {
    font-size: 17px;
  }
}

/* ════════════════════════════════
   Mobile  ≤ 767px
════════════════════════════════ */
@media (max-width: 767px) {
  .php-faq-section {
    padding: 56px 20px;
  }

  .php-faq-heading {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .php-faq-question {
    font-size: 17px;
    line-height: 24px;
  }

  .php-faq-answer {
    font-size: 16px;
    line-height: 24px;
  }
}

