/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 164:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.banner-form-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  
}

.banner-image-block {
  position: relative;
  width: 100%;
  min-height: 600px; /* Ensures enough height for content + form */
}

.banner-image-block picture,
.banner-image-block picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Banner Content */
.banner-content {
  position: absolute;
  top: 10%;
  left: 5%;
  z-index: 2;
  max-width: 40%;
  color: #fff;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
}

.banner-content h1,
.banner-content h2,
.banner-content h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.3;
}

.banner-content p {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.banner-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.banner-content ul li {
  list-style-type: disc;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 6px;
}

.banner-content .btn {
  margin-top: 20px;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

/* Form Overlay */
.form-overlay-target {
  position: absolute;
  top: 25%;
  right: 5%;
  z-index: 3;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  max-width: 30%;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  
}

.form-heading {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .banner-image-block {
    min-height: 450px;
    position: relative;
  }

  .banner-content {
    position: absolute;
    top: 15%;
    left: 5%;
    transform: none;
    width: 90%;
    max-width: 90%;
    z-index: 3;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
  }

  .banner-content h1,
  .banner-content h2,
  .banner-content h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .banner-content p,
  .banner-content ul li {
    font-size: 14px;
    line-height: 1.5;
  }

  .banner-content .btn {
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 15px;
  }

  .form-overlay-target {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    max-width: 100%;
    width: 90%;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    z-index: 2;
  }

  .form-heading {
    font-size: 16px;
    text-align: center;
  }

  .hide-mobile {
    display: none !important;
  }
}
</style>