   /* CSS Styling for Section Headings */
 .bhb-section-container {
    margin: 40px 0;
    padding: 0 15px;
 }
  
  .bhb-section-heading {
    padding-left: 6%;
    font-family: 'Arial', sans-serif; /* You can replace with your preferred sans-serif font */
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    margin-bottom: 30px;
    letter-spacing: 1px;
  }
  
  /* Media query for mobile responsiveness */
  @media (max-width: 768px) {
    .bhb-section-heading {
      font-size: 28px;
      margin-bottom: 20px;
    }
  }