.ni-faq-wrapper {
  width: 100%;
  margin: 34px 0;
}

.ni-faq-category {
  margin: 0 0 80px;
}

.ni-faq-category-heading {
  margin: 0px;
  padding: 0px;
}

.ni-faq-category-heading h2 {
  margin: 0;
  color: #111;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.ni-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ni-faq-item {
  background: #fff;
  border: 1px solid #eadfca;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.ni-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: #fff;
  color: #111;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.ni-faq-question:hover,
.ni-faq-item.is-open .ni-faq-question {
  color: #C9A14A;
}

.ni-faq-icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid currentColor;
}

.ni-faq-icon::before,
.ni-faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

.ni-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ni-faq-item.is-open .ni-faq-icon::after {
  opacity: 0;
}

.ni-faq-answer {
  display: none;
  border-top: 1px solid rgba(0, 0, 0, .06);
  color: #444;
  line-height: 1.65;
}

.ni-faq-item.is-open .ni-faq-answer {
  display: block;
}

.ni-faq-answer-inner {
  padding: 18px 22px 22px;
  font-size: 15px;
}

.ni-faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.ni-faq-answer a {
  color: #C9A14A;
  font-weight: 700;
  text-decoration: underline;
}

.ni-faq-empty {
  padding: 18px 20px;
  border-radius: 12px;
  background: #f7f7f7;
  color: #555;
  text-align: center;
}

.cms-faq-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 16px;
}

.cms-faq-hero {
  margin-bottom: 60px;
  padding: 70px 40px;
  border-radius: 28px;
  border: 1px solid rgba(201, 161, 74, .25);
  background: linear-gradient(135deg, rgba(0, 0, 0, .03), rgba(201, 161, 74, .08));
  text-align: center;
}

.cms-faq-eyebrow {
  display: inline-block;
  color: #C9A14A;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.cms-faq-hero h1,
.cms-faq-hero h2 {
  position: relative;
  padding-bottom: 18px;
  margin: 0 0 16px;
  color: #333 !important;
  font-size: 42px;
  text-align: center !important;
}

.cms-faq-hero h1::after,
.cms-faq-hero h2::after {
  content: "";
  position: absolute;
  left: 50% !important;
  bottom: 0;
  width: 90px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d4af37 0%, #C9A14A 100%);
  transform: translateX(-50%);
}

.cms-faq-hero p {
  margin: 0 auto;
  color: #333;
  font-size: 17px;
  text-align: center !important;
}

@media (max-width: 768px) {
  .cms-faq-page {
    padding: 30px 12px;
  }

  .cms-faq-hero {
    padding: 38px 18px;
    border-radius: 18px;
  }

  .cms-faq-hero h1,
  .cms-faq-hero h2 {
    font-size: 32px;
  }

  .ni-faq-category-heading h2 {
    font-size: 24px;
  }

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

  .ni-faq-answer-inner {
    padding: 16px 18px 18px;
    font-size: 14px;
  }
}
