/* Minimal overflow fix - only targets the specific issue */
@media (max-width: 767px) {
    html {
        overflow-x: hidden;
        position: relative;
        width: 100%;
    }
    
    /* Only target elements that are known to cause overflow */
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Fix for images and media */
    img, video, iframe, object, embed {
        max-width: 100%;
        height: auto;
    }
}
