/* Remove all promo banner related styles and white space */
.promo-banner {
    display: none !important;
}

/* Fix white space at top on mobile */
@media (max-width: 768px) {
    body {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        background: white !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    }
    
    /* Remove any top margin/padding that creates white space */
    .hero {
        margin-top: 50px !important; /* Only header height */
        padding-top: 0 !important;
    }
    
    /* Ensure no element creates unwanted top space */
    body > *:first-child {
        margin-top: 0 !important;
    }
    
    /* Remove promo banner space */
    .promo-banner + * {
        margin-top: 0 !important;
    }
}