.faq-page {
  background: #f3f4f6;
  padding: 2rem 0 4rem;
  margin-bottom: 2rem;
}

.faq-page__breadcrumbs {
  background: transparent;
  padding: 0 0 1rem;
  margin-bottom: 0;
}

.faq-page__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.faq-page__lead {
  font-size: 1.15rem;
  color: #444;
  max-width: 720px;
  margin: 0 0 1.75rem;
  line-height: 1.55;
}

.faq-page__toolbar {
  margin-bottom: 1.25rem;
}

.faq-page__search {
  max-width: 480px;
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 0.65rem 1rem;
  font-size: 1rem;
}

.faq-page__categories-wrap {
  margin-bottom: 2rem;
  overflow: hidden;
}

.faq-page__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  overflow: visible;
  padding-bottom: 0.25rem;
}

.faq-chip {
  flex: 0 0 auto;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.faq-chip:hover,
.faq-chip:focus {
  border-color: #e40000;
  color: #e40000;
}

.faq-chip.is-active {
  background: #e40000;
  border-color: #e40000;
  color: #fff;
}

.faq-featured {
  margin-bottom: 2.5rem;
}

.faq-featured__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.faq-featured__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.faq-featured__card {
  display: block;
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.15rem;
  text-decoration: none !important;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s, transform 0.15s;
}

.faq-featured__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-featured__card-cat {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #e40000;
  margin-bottom: 0.35rem;
}

.faq-featured__card-q {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-item.is-hidden {
  display: none;
}

.faq-item__question {
  margin: 0;
  font-size: inherit;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: none;
  background: transparent;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
}

.faq-item__trigger:hover,
.faq-item__trigger:focus {
  color: #e40000;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  transform: rotate(-135deg);
}

.faq-item__answer {
  border-top: 1px solid #eee;
}

.faq-item__answer-body {
  padding: 0 1.25rem 1.25rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #444;
}

.faq-cta {
  margin-top: 3rem;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-cta__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.faq-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.faq-cta__btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 12px;
  padding: 0.65rem 1.35rem;
}

.faq-cta__btn--primary {
  background: #e40000;
  border-color: #e40000;
  color: #fff;
}

.faq-cta__btn--primary:hover {
  background: #c90000;
  border-color: #c90000;
  color: #fff;
}

.faq-cta__btn--outline {
  border: 2px solid #e40000;
  color: #e40000;
  background: transparent;
}

.faq-cta__btn--outline:hover {
  background: #e40000;
  color: #fff;
}

@media (max-width: 767.98px) {
  .faq-page__title {
    font-size: 1.85rem;
  }

  .faq-page__lead {
    font-size: 1rem;
  }
}
