:root {
    --neo-primary: #1e3b7b;
    --neo-accent:  #3b7b2d;
    --bg-color: #f4f7fb; /* This is the light gray background */
    --card-bg: #ffffff;
    --text-main: #1e293b;
    /* ... your other variables ... */
}

body {
    margin: 0; 
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 
    background-color: var(--bg-color); /* Restores the light background */
    color: var(--text-main); 
    min-height: 100vh;
}

