.banner {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border: 0.5px solid black;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.banner-content {
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(1px);
  padding: 20px;
  max-width: 90%;
  border-radius: 4px;
  z-index: 2;
  color: white;
}


.banner-content h1 {
      font-size: 28px;
      margin-bottom: 10px;
      font-weight: bold;
}

.banner-content p {
      font-size: 16px;
      margin-bottom: 20px;
}

.banner-content .btn {
      background-color: #4169e1;
      color: white;
      padding: 10px 18px;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
      text-decoration: none;
}