.faq-hero {
  padding: 170px 0 110px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.72)),
    url("../img/faq/faq-hero.png") center center / cover no-repeat;
  color: var(--white);
}

.faq-hero-content {
  max-width: 840px;
}

.faq-hero-content h1 {
  font-size: 52px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
}

.faq-hero-content p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.faq-service-pills {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 999px;
  color: var(--dark);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.faq-pill:hover {
  border-color: var(--primary);
  background: #fff5f5;
  color: var(--primary);
}

.faq-section-header {
  max-width: 840px;
  margin-bottom: 34px;
}

.faq-section-header h2 {
  font-size: 38px;
  margin-bottom: 14px;
}

.faq-section-header p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 0;
}

.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.faq-accordion .accordion-button {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  padding: 22px 24px;
  background: var(--white);
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: #fff8f8;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.faq-accordion .accordion-body {
  padding: 0 24px 24px;
  color: var(--text);
  line-height: 1.9;
  font-size: 15.5px;
}

.faq-final-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

@media (max-width: 1199px) {
  .faq-hero-content h1 {
    font-size: 46px;
  }
}

@media (max-width: 991px) {
  .faq-hero {
    padding: 150px 0 90px;
  }

  .faq-section-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .faq-hero-content h1 {
    font-size: 36px;
  }

  .faq-hero-content p {
    font-size: 16px;
  }

  .faq-pill {
    width: 100%;
  }

  .faq-accordion .accordion-button {
    font-size: 16px;
    padding: 18px 18px;
  }

  .faq-accordion .accordion-body {
    padding: 0 18px 20px;
  }
}