<style>
    /* 1. Force the background to fill the entire screen width */
    html, body {
        margin: 0;
        padding: 0;
        width: 100% !important;
        background-color: #f8f9fa; /* Ensures the white gaps turn light gray */
    }

    /* 2. Overrides for the Help Portal's default layout constraints */
    #wrapper, .main-content, #content-wrapper, .container-fluid { 
        display: block !important; 
        width: 100% !important; 
        margin: 0 !important; 
        padding: 0 !important; 
        max-width: 100% !important;
        min-width: 100% !important;
    }
    
    :root { --ghv-green: #05ac13; --ghv-black: #101010; }
    
    .academy-body { 
        width: 100vw; /* Forces body to viewport width */
        min-height: 100vh; 
        overflow-x: hidden; /* Prevents horizontal scrolling */
    }

    /* 3. Ensure the Header is truly full-width */
    .academy-header { 
        background: var(--ghv-black); 
        color: white; 
        padding: 80px 0 120px 0;
        border-bottom: 4px solid var(--ghv-green);
        width: 100%;
        margin: 0;
    }

    .mt-overlap { margin-top: -60px; position: relative; z-index: 10; }

    /* Module Card Styling */
    .module-item {
        background: #fff;
        border-radius: 16px;
        border: none;
        transition: all 0.3s ease;
        text-decoration: none !important;
        display: block;
        margin-bottom: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    
    /* ... keep the rest of your module-item styles ... */
</style>