
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Poppins:wght@500;600&display=swap');

.hz-faqc-page,
.hz-faqc-page * {
  box-sizing: border-box;
}

.hz-faqc-page {
  --hz-orange: #ec682e;
  --hz-orange-dark: #d3541c;
  --hz-navy: #071d33;
  --hz-blue: #0b2f4d;
  --hz-text: #4b5563;
  --hz-muted: #64748b;
  --hz-border: #e5e7eb;
  --hz-soft: #f7f9fc;
  --hz-white: #ffffff;

  width: 100%;
  overflow: hidden;
  background: #ffffff;
  color: var(--hz-text);
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.65;
}

.hz-faqc-page a {
  text-decoration: none !important;
}

.hz-faqc-page h1,
.hz-faqc-page h2,
.hz-faqc-page h3,
.hz-faqc-page p {
  margin: 0;
}

.hz-faqc-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}

.hz-faqc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--hz-orange);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hz-faqc-eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--hz-orange);
  display: inline-block;
}

.hz-faqc-section {
  padding: 86px 0;
}

.hz-faqc-section--soft {
  background: var(--hz-soft);
}

.hz-faqc-title {
  max-width: 980px;
  margin-bottom: 18px;
  color: var(--hz-navy);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -1px;
}

.hz-faqc-desc {
  max-width: 1040px;
  color: var(--hz-text);
  font-size: 17px;
  line-height: 1.8;
}

.hz-faqc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
}

.hz-faqc-solution {
  padding: 28px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--hz-border);
  box-shadow: 0 14px 34px rgba(7, 29, 51, 0.045);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hz-faqc-solution:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 104, 46, 0.35);
  box-shadow: 0 22px 52px rgba(7, 29, 51, 0.1);
}

.hz-faqc-solution span {
  display: block;
  margin-bottom: 12px;
  color: var(--hz-orange);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hz-faqc-solution h3 {
  margin-bottom: 10px;
  color: var(--hz-navy);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 21px;
  line-height: 1.32;
  font-weight: 500;
}

.hz-faqc-solution p {
  color: var(--hz-text);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .hz-faqc-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hz-faqc-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .hz-faqc-container {
    padding: 0 22px;
  }

  .hz-faqc-section {
    padding: 62px 0;
  }

  .hz-faqc-title {
    font-size: 30px;
    letter-spacing: -0.7px;
  }

  .hz-faqc-desc {
    font-size: 16px;
  }

  .hz-faqc-grid-3 {
    grid-template-columns: 1fr;
  }
}
