/* CTA FAQ – baner z rozmytym tłem, overlay, tytuł + przycisk, pasek u dołu */
.cta-faq-wrapper {
  box-sizing: border-box;
  width: 100%;
  position: relative;
}

.cta-faq {
  position: relative;
  width: 100%;
  min-height: 18.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #211c34;
}

.cta-faq-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-faq-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 15, 32, 0.7);
  z-index: 1;
}

.cta-faq-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2.5rem 1.5rem;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.cta-faq-subheading {
  margin: 0;
  font-family: type-36, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #e0e0e0;
}

.cta-faq-heading {
  display: block;
  margin: 0 0 1.5rem;
  font-family: type-36, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 42.3px;
  color: #ffffff;
}

.cta-faq-button {
  display: inline-block;
  padding: 13px 20px;
  font-family: type-36, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background-color: #23c767;
  border: 2px solid transparent;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  text-decoration: none;
}

.cta-faq-button:hover {
  background-color: #10aa50;
  color: #ffffff;
  text-decoration: none;
}

.cta-faq-strip {
  width: 100%;
  height: 0.5rem;
  background-color: #282a36;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta-faq {
    min-height: 16rem;
  }

  .cta-faq-content {
    padding: 2rem 1rem;
  }
}
