/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 21:21 Expected identifier but found whitespace
Line 21:23 Unexpected "{"
Line 21:32 Expected ":"
Line 32:10 Expected identifier but found whitespace
Line 32:12 Unexpected "{"
Line 32:21 Expected ":"
Line 87:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .custom-banner-section {
    text-align: center;
    padding: 0 !important;
    margin: 0 !important;
    background-color: {{ section.settings.background_color }};
    overflow: hidden;
    line-height: 0;
  }
  
  .custom-banner-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 0 !important;
    padding-top: 20px;
    color: {{ section.settings.text_color }};
    line-height: 1.2;
  }
  
  .custom-banner-link {
    display: block;
    text-decoration: none;
  }
  
  .custom-banner-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .desktop-only {
    display: block;
  }
  
  .mobile-only {
    display: none;
  }
  
  @media (max-width: 767px) {
    .desktop-only {
      display: none !important;
    }
    
    .mobile-only {
      display: block !important;
    }
    
    .custom-banner-heading {
      font-size: 1.8rem;
      padding-top: 15px;
    }
  }
  
  /* Override any Shopify theme defaults */
  .shopify-section .custom-banner-section {
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .section-header,
  .page-width,
  .section,
  .shopify-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
</style>
.doubt-section {
  width: 100%;
  padding: 40px 20px;
  background-color: white;
  
}

.doubt-section-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.doubt-section-content {
  flex: 1;
}

.doubt-section-heading {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.doubt-section-subtext {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}

.doubt-section-cta {
  display: flex;
  align-items: center;
}

.doubt-section-button {
  background-color:white;
  color:  #0B6069;
  padding: 12px 42px;
  border: none;
  border-radius: 12px;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.doubt-section-button:hover {
  background-color:rgb(201, 201, 201);
}

@media screen and (max-width: 768px) {
  .doubt-section-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin-bottom:56px
  }

  .doubt-section-content {
    text-align: center;
  }

  .doubt-section-heading {
    font-size: 3rem;
  }

  .doubt-section-cta {
    width: 100%;
    justify-content: center;
  }

  .doubt-section-button {
    width: auto;
  }
}