/* ============================================
   HERO IMAGE FIX - GUARANTEED
   ============================================ */

/* Remove any max-width restriction */
* {
    box-sizing: border-box;
}

img {
    max-width: none !important;
}

/* Hero main container */
.hero-main {
    width: 100%;
    overflow: hidden;
}

/* Hero image wrapper */
.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

/* Image - fills container completely */
.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-image {
        height: 250px;
    }
}
