/* Fix hero section edge-to-edge bleed on tablet */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .your-hero-section-class {
    width: 92% !important;
    max-width: 92% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Fix hero section edge-to-edge bleed on mobile */
@media screen and (max-width: 767px) {
  .your-hero-section-class {
    width: 90% !important;
    max-width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}