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

.hz-da-faq,
.hz-da-faq * {
  box-sizing: border-box;
}

.hz-da-faq {
  --hz-orange: #ec682e;
  --hz-orange-soft: rgba(236, 104, 46, 0.12);
  --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-da-faq h2,
.hz-da-faq h3,
.hz-da-faq p {
  margin: 0;
}

.hz-da-faq-section {
  padding: 86px 0;
  background: #ffffff;
}

.hz-da-faq-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.hz-da-faq-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-da-faq-eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--hz-orange);
  display: inline-block;
}

.hz-da-faq-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-da-faq-desc {
  max-width: 980px;
  color: var(--hz-text);
  font-size: 17px;
  line-height: 1.8;
}

.hz-da-faq-list {
  display: grid;
  gap: 16px;
  margin-top: 44px;
}

.hz-da-faq-item {
  overflow: hidden;
  border-radius: 20px;
  background: var(--hz-soft);
  border: 1px solid var(--hz-border);
  box-shadow: 0 12px 30px rgba(7, 29, 51, 0.035);
}

.hz-da-faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 24px 64px 24px 26px;
  color: var(--hz-navy);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.hz-da-faq-item summary::-webkit-details-marker {
  display: none;
}

.hz-da-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--hz-orange-soft);
  color: var(--hz-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hz-da-faq-item[open] summary::after {
  content: "−";
  background: var(--hz-orange);
  color: #ffffff;
}

.hz-da-faq-answer {
  padding: 0 26px 26px 26px;
  color: var(--hz-text);
  font-size: 15.5px;
  line-height: 1.8;
}

.hz-da-faq-answer strong {
  color: var(--hz-navy);
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
}

.hz-da-faq-answer ul {
  margin: 14px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.hz-da-faq-answer li {
  position: relative;
  padding-left: 18px;
  color: var(--hz-muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.hz-da-faq-answer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hz-orange);
}

.hz-da-faq-cta {
  margin-top: 34px;
  padding: 30px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 18%, rgba(236,104,46,0.2), transparent 34%),
    linear-gradient(135deg, #071d33 0%, #0b2f4d 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 22px 60px rgba(7, 29, 51, 0.14);
}

.hz-da-faq-cta h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
}

.hz-da-faq-cta p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.65;
}

.hz-da-faq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--hz-orange);
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hz-da-faq-btn:hover {
  background: #d95a22;
  transform: translateY(-2px);
}

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

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

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

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

  .hz-da-faq-item summary {
    padding: 22px 58px 22px 22px;
    font-size: 17px;
  }

  .hz-da-faq-answer {
    padding: 0 22px 24px 22px;
    font-size: 15px;
  }

  .hz-da-faq-cta {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .hz-da-faq-btn {
    width: 100%;
  }
}
