.feature-banner-section {
  background: rgba(10, 12, 28, 0.85); /* Dark background behind it all */
  padding: 100px 5vw;
}

/* main wrapper */
.feature-banner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-start;
}

/* lift the whole visual block (image + yellow strip) upward */
.feature-banner-visual {
  position: relative;
  flex: 0 0 700px; /* Width of the image block */
  transform: translateY(-10px); 
}

.feature-bg-strip {
  position: absolute;
  top: -80px;
  left: -150px;
  right: 80px;
  bottom: -100px;
  background: #f7cd4f; /* The signature flat yellow */
  z-index: 0;
}

.feature-banner-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.8);
}

/* Right: dark card overlapping image edge */
.feature-banner-card {
  position: relative;
  z-index: 5; 
  margin-left: -100px;    /* pull card left over the image edge */
  margin-top: 100px;      /* sit a bit lower than image center */
  background: #20232f;    /* Original dark slate */
  max-width: 450px;
  border-radius: 4px;
  padding: 3em 3.5em;
  box-shadow: 0 24px 70px rgba(0,0,0,0.75);
}

.feature-banner-card h2 {
  font-size: 2.1em;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1.2em 0;
  color: #f7cd4f; /* Yellow text */
}

.feature-banner-card p {
  font-size: 1em;
  line-height: 1.7;
  color: #e3e3e3;
  margin: 0 0 1em 0;
}

/* Yellow JOIN NOW button */
.feature-cta-btn {
  margin-top: 1.6em;
  border: none;
  padding: 1em 3em;
  border-radius: 0;
  background: #f7cd4f;
  color: #111317;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.feature-cta-btn:hover {
  background: #ffd95c;
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0,0,0,0.7);
}

/* Responsive: stack vertically */
@media (max-width: 1000px) {
  .feature-banner {
    flex-direction: column;
    align-items: center;
  }
  .feature-banner-visual {
    flex: 0 0 auto;
    width: 90%;
  }
  .feature-bg-strip {
    left: -20px;
    right: -20px;
  }
  .feature-banner-card {
    margin-left: 0;
    margin-top: -40px;
    max-width: 90%;
    padding: 2.5em;
  }
}