/** Shopify CDN: Minification failed

Line 25:19 Expected identifier but found whitespace
Line 25:21 Unexpected "{"
Line 25:30 Expected ":"
Line 26:8 Expected identifier but found whitespace
Line 26:10 Unexpected "{"
Line 26:19 Expected ":"
Line 77:0 Unexpected "<"
Line 82:0 Unexpected "<"
Line 115:2 Unexpected "<"
Line 247:21 Expected identifier but found whitespace
... and 5 more hidden warnings

**/


/* CSS from section stylesheet tags */
.doubt-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px; /* Increased horizontal padding for desktop */
  padding-bottom: 40px; 
  background-color: {{ section.settings.background_color }};
  color: {{ section.settings.text_color }};
}

.doubt-banner__content {
  flex-grow: 1;
  margin-right: 20px;
}

.doubt-banner__heading {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: bold;
}

.doubt-banner__subheading {
  font-size: 16px;
}

.doubt-banner__button {
  background-color: #000000; /* Black Button */
  color: #ffffff; /* White Text */
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}

.doubt-banner__button:hover {
  background-color: #333333;
  color: #ffffff; /* White Text */
}

/* Mobile view adjustments */
@media screen and (max-width: 768px) {
  .doubt-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .doubt-banner__content {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .doubt-banner__heading {
    font-size: 24px;
  }
}
<style>
  .google-reviews-section {
    text-align: center;
    padding: 20px;
  }
</style>
<style>
.image-banner-with-link {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.desktop-image {
  display: block !important;
  width: 100vw !important; /* Full width of the viewport */
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto; /* Centering the image */
}

.mobile-image {
  display: none !important;
}

@media (max-width: 767px) {
  .desktop-image {
    display: none !important;
  }

  .mobile-image {
    display: block !important;
    width: 100% !important;
  }
}

  </style>
.instant-relief-section {
    margin: 0 auto;
    font-family: Arial, sans-serif;
  }

  .instant-relief-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .instant-relief-title {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 0.5rem;
  }

  .instant-relief-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }

  .instant-relief-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
  }

  .instant-relief-step-number::before {
  content: '';
      position: absolute;
      bottom: 1%;
      left: 50%;
      width: 3px;
      height: 82%;
      background-color: #0E0311;
      transform: translateX(-50%);
  }

 /*  .instant-relief-step {
    display: flex;
    align-items: stretch;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    gap: 60px;
  } */

  .instant-relief-step {
    display: grid
;
    align-items: stretch;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    gap: 60px;
    justify-content: space-between;
    justify-items: stretch;
    padding: 10px;
}

  .instant-relief-step-number {
    width: 55px;
    height: 55px;
    background-color: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    z-index: 1;
    border: 5px solid white;
  }

  .instant-relief-step-content {
    flex: auto;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background: white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .instant-relief-step-label {
    width: fit-content;
    background: #000;
    color: #fff;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 12px;
    margin-bottom: 0.5rem;
    border-radius: 4px;
  }

  .instant-relief-step-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }

  .instant-relief-step-description {
    color: #666;
    font-size: 14px;
  }

  .instant-relief-step-image {
    flex: auto;
    max-width: 100%;
  }

  .instant-relief-step-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
  }

  .instant-relief-cta-container {
    text-align: center;
    margin-top: 2rem;
  }

  .instant-relief-cta {
    display: inline-block;
    background-color: {{ section.settings.cta_bg_color }};
    color: {{ section.settings.cta_text_color }};
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
  }

  .instant-relief-cta:hover {
    opacity: 0.9;
    transform: scale(1.05);
  }

  .instant-relief-testimonials {
    text-align: center;
    margin-top: 1rem;
  }

  .instant-relief-testimonial-rating {
    color: #ffc107;
    font-size: 20px;
  }
  @media (min-width: 769px) {
    .instant-relief-step {
      grid-template-columns: 1fr auto 1fr;
    }
  }
  @media (max-width: 768px) {
    .instant-relief-step {
      grid-template-rows: 1fr auto 1fr;
      gap: 25px;
    }

    .instant-relief-steps::before {
      left: 15px;
    }

    .instant-relief-step-number {
      width: 40px;
      height: 40px;
      font-size: 16px;
      left: 0;
      border: 5px solid white;
    }

    .instant-relief-step-content {
      padding-left: 3rem;
    }

    .instant-relief-step-content,
    .instant-relief-step-image {
      max-width: 100%;
      width: 100%;
    }

    .instant-relief-title {
      font-size: 24px;
    }

    .instant-relief-subtitle {
      font-size: 14px;
    }
    .instant-relief-step-number::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 95%;
    top: 14%;
    width: 3px;
    height: 72%;
    background-color: #0E0311;
    transform: translateX(-50%);
    rotate: 90deg;
}
  }