    /* === STICKY FOOTER FIX === */
    html, body {
        height: 100%;
        margin: 0;
        padding: 0;
    }
    
    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    
    main {
        flex: 1 0 auto; /* This makes the main content grow and push the footer down */
    }
    
    footer {
        flex-shrink: 0;
        margin-top: auto; /* Ensures footer stays at the bottom */
    }