.newsletter-section * {
    hyphens: none !important;
    word-break: normal !important;
    font-family: 'Roboto' !important;
    box-sizing: border-box;
  }
  
  .newsletter-section {
    background-color: #fff;
    padding: 60px 0;
    width: 100%;
  }
  
  .newsletter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
  }
  
  .newsletter-title {
    font-size: 28px;
    color: #343741 !important;
    font-weight: 500;
    margin-bottom: 15px;
    width: 100%;
  }
  
  .newsletter-description {
    font-size: 16px;
    color: #343741;
    margin-bottom: 40px;
    line-height: 150%;
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
    width: 100%;
  }
  
  .news-letter-marketo-form-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
   
  .news-letter-marketo-form-container .mktoFormRow {
    background-color: transparent !important;
    width: 100%;
  }
  
  .news-letter-marketo-form-container .mktoButtonRow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .news-letter-marketo-form-container .mktoButtonRow span {
    margin-left: 0 !important;
  }
  
  .news-letter-marketo-form-container .mktoButtonRow .mktoButtonWrap .mktoSimple {
    margin-left: 0 !important;
  }
  
  .news-letter-marketo-form-container .mktoForm {
    width: 100% !important;
  }
  
  .news-letter-marketo-form-container .mktoForm input[type=email] {
    width: 100% !important;
    max-width: 450px;
    margin-top: 0 !important;
    padding: 13px !important;
    border-radius: 8px !important;
    border: 1px solid #33B0E5 !important;
    box-shadow: 0 4px 8px rgba(128, 128, 128, 0.4);
    font-size: 16px;
  }
  
  .news-letter-marketo-form-container .mktoForm .mktoFieldWrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100% !important;
  }
  
  .news-letter-marketo-form-container .mktoHtmlText.mktoHasWidth {
    text-align: center !important;
    width: 100% !important;
  }
  
  .news-letter-marketo-form-container .mktoForm .mktoButton {
    border-radius: 8px;
    padding: 12px 24px;
    transition: all 0.3s ease;
  }
  
  /* Responsive styles */
  @media (max-width: 992px) {
    .newsletter-container {
      max-width: 700px;
    }
  }
  
  @media (max-width: 768px) {
    .newsletter-title {
      font-size: 28px;
    }
    
    .newsletter-description {
      font-size: 16px;
    }
    
    .newsletter-container {
      max-width: 90%;
    }
    
    .news-letter-marketo-form-container {
      max-width: 500px;
    }
  }
  
  @media (max-width: 600px) {
    .news-letter-marketo-form-container .mktoForm input[type=email] {
      max-width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .newsletter-section {
      padding: 40px 0;
    }
    
    .newsletter-title {
      font-size: 24px;
    }
    
    .newsletter-description {
      font-size: 15px;
      margin-bottom: 30px;
    }
    
    .form-disclaimer {
      font-size: 13px;
    }
    
    
    .newsletter-container {
      padding: 0 15px;
    }
  }
  
  @media (max-width: 320px) {
    .newsletter-title {
      font-size: 22px;
    }
    
    .newsletter-description {
      font-size: 14px;
      margin-bottom: 25px;
    }
    
  }