/**
 * ==========================================================
 * Custom Stylesheet
 * ----------------------------------------------------------
 * File: assets/css/style.css
 *
 * PURPOSE:
 * ----------------------------------------------------------
 * This file is reserved for:
 *  - Custom CSS overrides
 *  - Styles not convenient in Tailwind
 *  - Print styles
 *  - Accessibility improvements
 *
 * IMPORTANT:
 * ----------------------------------------------------------
 * - Tailwind CSS is currently loaded via CDN
 * - This file is OPTIONAL
 * - Add styles here only when needed
 *
 * FUTURE USE CASES:
 * ----------------------------------------------------------
 * - Print-friendly service pages
 * - Custom animations
 * - Government branding colors
 * - Accessibility focus styles
 *
 * Author: Senior PHP Developer
 * Version: 1.0
 * ==========================================================
 */

/* ----------------------------------------------------------
   GLOBAL OVERRIDES (USE SPARINGLY)
---------------------------------------------------------- */

/* Improve text rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ----------------------------------------------------------
   PRINT STYLES (FUTURE)
---------------------------------------------------------- */

@media print {
    header,
    footer {
        display: none;
    }

    body {
        background: #ffffff;
        color: #000000;
    }
}
