<!-- ====== STYLES ====== -->
<style>
.home-banner{
  position: relative;
  border-bottom-right-radius: 100px;
}
.home-banner .page-center{
  padding-top: 120px;
  padding-bottom: 120px;
}
.home-banner .banner-bg-image-wrap{
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-bottom-right-radius: 100px;
}
.home-banner .banner-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
.home-banner .banner-right-image{
  position: absolute;
  bottom: -41px;
  right: 0;
}
.home-banner .banner-right-image img{
  max-width: 400px;
}
.home-banner .banner-content{
  max-width: 673px;
}
.home-banner .banner-content .title{
  font-size: 64px;
  line-height: 1.22;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.home-banner .banner-content .sub-title{
  margin-bottom: 0;
}
.home-banner .banner-form{
  max-width: 391px;
  margin-top: 32px;
  min-height: 141px;
}
.home-banner .banner-form form label{
  font-size: 14px;
  line-height: 1.1428571428571428;
  margin-bottom: 13px;
  font-weight: 600;
  color: #fff;
}
.home-banner .banner-form form input[type=text] {
  min-height: 43px;
}
.home-banner .banner-form .hs-form-field {
  margin-bottom: 13px;
}
.home-banner .banner-form ::placeholder {
  color: #433558;
  font-size: 12px;
  line-height: 1.33333;
}

@media only screen and (min-width: 768px)  {
  .home-banner .banner-right-image-mobile, 
  .home-banner .banner-bg-image .banner-bg-image-mobile{
    display: none;
  }
}
@media only screen and (max-width: 1200px)  {
  .home-banner .banner-right-image {
    bottom: -36px;
  }
  .home-banner .banner-right-image img {
    max-width: 350px;
  }
  .home-banner .banner-content {
    max-width: 580px;
  }
  .home-banner .banner-content .title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px)  {
  .home-banner .page-center {
    padding-bottom: 80px;
    padding-top: 80px;
  }
  .home-banner .banner-right-image {
    bottom: -30px;
  }
  .home-banner .banner-right-image img {
    max-width: 290px;
  }
  .home-banner .banner-content {
    max-width: 460px;
  }
  .home-banner .banner-content .title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px)  {
  .home-banner {
    border-bottom-right-radius: 60px;
  }
  .home-banner .page-center {
    padding: 50px 27px 0px;
  }
  .home-banner .banner-right-image-mobile {
    position: relative;
    bottom: 0;
  }
  .home-banner .banner-right-image, 
  .home-banner .banner-bg-image .banner-bg-image-desktop{
    display: none;
  }
  .home-banner .banner-content {
    max-width: 100%;
    text-align: center;
  }
  .home-banner .banner-content .title {
    font-size: 22px;
    line-height: 1.4545454545454546;
    margin-bottom: 12px;
    letter-spacing: 0;
  }
  .home-banner .banner-content .sub-title {
    font-size: 16px;
    line-height: 1.5;
  }
  .home-banner .banner-form {
    text-align: left;
    min-height: 131px;
    margin-top: 32px;
    max-width: 100%;
  }
  .home-banner .banner-form form .hs-submit .hs-button {
    padding: 15px 20px;
    font-size: 14px;
    line-height: 1.1428571428571428;
  }
  .home-banner .banner-right-image-mobile {
    text-align: center;
    padding-top: 40px;
  }
  .home-banner .banner-right-image-mobile img {
    max-width: 250px;
    margin-bottom: -15px;
  }
  .home-banner .banner-bg-image {
    top: auto;
    bottom: 0;
  }
}

/* --- Input Field Styling --- */
#enter_zip_code {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 24px;
  font-size: 16px;
  color: #433558;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0);
  outline: none;
}
#enter_zip_code::placeholder {
  color: #9a8cb4;
  font-size: 16px;
}
#enter_zip_code:focus {
  box-shadow: 0 0 0 3px rgba(95, 11, 183, 0.2);
}

/* --- Button Styling --- */
#zip-submit {
  width: 100%;
  display: block;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #5F0BB7;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#zip-submit:hover {
  background-color: #ffffff;
  color: #14002E;
  transform: translateY(-1px);
}

/* --- Text Color Fix --- */
.home-banner,
.home-banner .title,
.home-banner .banner-content h1,
.home-banner .banner-content .sub-title,
.home-banner .banner-form form label,
.home-banner p {
  color: #ffffff !important;
}
.home-banner .sub-title,
.home-banner p {
  opacity: 0.9;
}

/* --- inline error message --- */
.zip-error {
  color: #ffd2d2;
  font-size: 13px;
  margin-top: 8px;
  display: none;
}
</style>