/* 
   Mobile fixes for horizontal scroll issues
   This will be included in the header.php file
*/

@media (max-width: 768px) {
  /* Additional fixes for mobile horizontal scroll */
  .audit-card-img, 
  .testimonial-card, 
  .benefit-card, 
  .form-container,
  .audit-card,
  .process-step,
  .testimonial-grid {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .hero-image img,
  .about-image img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
  }

  .mobile-menu {
    width: 80%;
    max-width: 300px;
    box-sizing: border-box;
  }
  
  /* Remove any potential negative margins */
  * {
    margin-left: 0;
    margin-right: 0;
  }
  
  /* Ensure proper handling of overflows */
  section, div {
    max-width: 100vw;
    overflow-x: hidden;
  }
}
