.content-wrapper {
  background: #f4f7fb;
}

.faq-page {
  padding-bottom: 36px;
}

.faq-hero {
  background: #fff;
  border: 1px solid #e3eaf3;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
  margin-bottom: 20px;
  padding: 28px;
}

.faq-kicker {
  color: #0f766e;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-hero h2 {
  color: #0f172a;
  font-size: 34px;
  font-weight: 900;
  margin: 6px 0 8px;
}

.faq-hero p {
  color: #64748b;
  margin: 0;
  max-width: 760px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
}

.faq-card,
.faq-side-card {
  background: #fff;
  border: 1px solid #e3eaf3;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  align-items: center;
  background: #fff;
  border: 0;
  color: #0f172a;
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  padding: 16px 18px;
  text-align: left;
  width: 100%;
}

.faq-question i {
  color: #0f766e;
  transition: transform 0.2s ease;
}

.faq-question:not(.collapsed) i {
  transform: rotate(180deg);
}

.faq-answer {
  border-top: 1px solid #eef2f7;
  color: #526173;
  line-height: 1.7;
  padding: 16px 18px;
}

.faq-side-card {
  padding: 18px;
}

.faq-side-card h4 {
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
}

.faq-side-card p {
  color: #64748b;
}

@media (max-width: 991px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .faq-page {
    padding-bottom: 24px;
  }

  .faq-hero {
    padding: 18px;
  }

  .faq-hero h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .faq-hero p,
  .faq-answer,
  .faq-side-card p {
    font-size: 14px;
  }

  .faq-question {
    gap: 12px;
    padding: 14px;
  }

  .faq-answer,
  .faq-side-card {
    padding: 14px;
  }
}
