.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #003f7f, #00bcd4);
  padding: 40px 80px;
  color: #fff;
  position: relative;
  flex-wrap: wrap;
}

.banner-content {
  max-width: 47%;
  flex: 1 1 auto;
  margin-bottom: 20px;
}

.banner-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.banner-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.cta-link {
  font-size: 1.5rem;
  color: #00eaff;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.cta-link:hover {
  text-decoration: underline;
}

.cta-link span {
  text-decoration: underline;
}

.banner-shape {
  width: 200px;
  height: 200px;
  background-image: url("/images/baba-supersign-slider-img.png");
  background-repeat: no-repeat;
  position: absolute;
  right: 50px;
  bottom: 40px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .banner {
    padding: 30px 40px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content h2 {
    font-size: 1.5rem;
  }

  .cta-link {
    font-size: 1.2rem;
  }

  .banner-shape {
    width: 150px;
    height: 150px;
    right: 30px;
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .banner-content {
    max-width: 100%;
  }

  .banner-shape {
    position: static;
    margin: 20px auto 0;
  }
}

@media (max-width: 480px) {
  .banner-content h1 {
    font-size: 1.8rem;
  }

  .banner-content h2 {
    font-size: 1.2rem;
  }

  .cta-link {
    font-size: 1rem;
  }

  .banner-shape {
    width: 120px;
    height: 120px;
  }
}
