/* ==========================================================
   COMMON STYLES - shared across all PMDRF pages
   (base reset, typography, government header)
   ========================================================== */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background: var(--bg-page);
            background-image:
                radial-gradient(ellipse at top, rgba(15, 43, 92, 0.04) 0%, transparent 60%),
                linear-gradient(180deg, #e2e8f0 0%, var(--bg-page) 100%);
            color: var(--text-main);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

.gov-header {
            background: var(--pm-navy);
            border-bottom: 4px solid var(--pm-red);
            padding: 10px 24px;
            color: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

.gov-header-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

.gov-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
        }

.gov-emblem {
            height: 48px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
        }

.gov-title-group h1 {
            font-size: 18px;
            font-weight: 800;
            letter-spacing: -0.01em;
            color: #ffffff;
            line-height: 1.2;
        }

.header-nchl-badge {
            background: #ffffff;
            padding: 4px 12px;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 36px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
            flex-shrink: 0;
        }
