
.cta-banner-section {
  width: 100%;
  max-width: 1200px;
  margin: 48px auto 0 auto;
  padding: 0;
}

.cta-banner-bg {
  position: relative;
  width: 100%;
  min-height: 320px;
  overflow: hidden;

}
.cta-banner-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}

.cta-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%; /* Zmniejszona szerokość na połowę */
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 80%, rgba(0,0,0,0) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Zmienione z center na flex-start */
  padding-left: 40px; /* Dodany padding od lewej */
}

.cta-banner-content {
  color: #fff;
  text-align: left; /* Zmienione z center na left */
  margin-bottom: 0px;
  z-index: 2;
  max-width: 400px; /* Ograniczenie szerokości tekstu */
}

.cta-banner-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.cta-banner-content p {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 12px;
}

@media (max-width: 700px) {
  .cta-banner-bg {
    min-height: 180px;
  }
  .cta-banner-img {
    height: 280px;
  }
  .cta-banner-content h2 {
    font-size: 1.3rem;
  }
  .cta-banner-content p {
    font-size: 1rem;
  }
}
