/* Emergency overlay fix for z-index issues */
body * {
    position: relative !important;
    z-index: auto !important;
}

main {
    z-index: 9999 !important;
    position: relative !important;
}

.section-container {
    z-index: 9998 !important;
    position: relative !important;
}

.card-bg {
    z-index: 9997 !important;
    position: relative !important;
}

/* Hide any background hero sections that might be bleeding through */
body::before {
    content: '';
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: -1 !important;
}