        /* COMPLETE RESET */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html, body {
            width: 100%;
            overflow-x: hidden;
        }
        
        /* OVERRIDE TEMPLATE STYLES */
        .animsition, 
        .wrapper.boxed, 
        .content {
            margin: 0 !important;
            padding: 0 !important;
            max-width: 100% !important;
            width: 100% !important;
        }
        
        /* PRODUCT HERO SECTION */
        .product-hero {
            position: relative;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .product-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://i.ibb.co/kZ1jzdy/thisisengineering-IR-Nb-FKU51-U-unsplash.jpg') center/cover no-repeat;
            transform: scaleX(-1);
            z-index: 0;
        }
        
        .product-hero-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            z-index: 2;
        }
        
        .product-hero-content {
            width: 60%;
            padding: 30px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
            margin-top: 6rem;
            transform: translateY(40px);
        }
        
        .product-hero h1 {
            font-family: 'Josefin Sans', sans-serif;
            font-weight: 600;
            font-size: 2.2rem;
            color: #000;
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }
        
        .product-hero .lead {
            font-family: 'Manrope', sans-serif;
            font-weight: 400;
            font-size: 1.3rem;
            color: #000;
            margin-bottom: 1.5rem;
        }
        
        .product-logo {
            max-height: 80px;
            margin-bottom: 20px;
        }
        
        .product-hero .btn {
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 500;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            margin: 0 10px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }
        
        /* Both buttons black initially */
        .product-hero .btn-primary,
        .product-hero .btn-outline-light {
            background-color: #000;
            color: #fff;
            border: 2px solid #000;
        }
        
        /* Both buttons blue on hover */
        .product-hero .btn-primary:hover,
        .product-hero .btn-outline-light:hover {
            background-color: #008c98;
            color: #fff;
            border-color: #008c98;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .product-hero-content {
                width: 70%;
                margin-top: 4rem;
            }
            
            .product-hero h1 {
                font-size: 2rem;
            }
            
            .product-hero .lead {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 768px) {
            .product-hero {
                min-height: 500px;
            }
            
            .product-hero-content {
                width: 80%;
                margin-top: 3rem;
                transform: translateY(20px);
            }
            
            .product-hero h1 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .product-hero {
                min-height: 400px;
            }
            
            .product-hero-content {
                width: 90%;
                padding: 20px;
                margin-top: 2rem;
            }
            
            .product-hero h1 {
                font-size: 1.6rem;
            }
            
            .product-hero .lead {
                font-size: 1rem;
            }
            
            .product-hero .btn {
                display: block;
                width: 100%;
                margin: 0 auto 15px;
            }
        }