.service-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  gap: 20px;
  isolation: isolate;
  width: 100%;
  height: 296px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.service-banner-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.service-banner-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(
    119.26deg,
    rgb(0 0 0 / 47%) 32.04%,
    #00000050 99.04%
  );
  z-index: 1;
}

.service-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 40px;
  width: 100%;
  max-width: 729px;
  z-index: 2;
}

.service-banner-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 12px;
  width: 100%;
}

.service-banner-label {
  display: none;
  width: 100%;
  font-family: "Instrument Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.service-banner-title {
  width: 100%;
  font-family: "Instrument Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 44px;
  line-height: 125%;
  text-align: center;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
}

.service-banner-description {
  width: 100%;
  font-family: "Instrument Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #ffffff;
  margin: 0;
}

.service-banner-button {
  display: none;
  flex-direction: row;
  align-items: flex-start;
  padding: 16px 24px;
  gap: 12px;
  width: 129px;
  height: 80px;
  background: #ff8c00;
  border-radius: 8px;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .service-banner {
    padding: 20px 40px;
  }

  .service-banner-title {
    font-size: 45px;
  }
}

@media (max-width: 768px) {
  .service-banner {
    padding: 20px 30px;
    height: 300px;
  }

  .service-banner-title {
    font-size: 36px;
  }

  .service-banner-description {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .service-banner {
    padding: 20px 20px;
    height: 320px;
  }

  .service-banner-title {
    font-size: 28px;
  }

  .service-banner-description {
    font-size: 16px;
  }
}
