    :root {
            /* --- Color Palette --- */
            --color-primary: #0071bc;       /* Blue */
            --color-primary-dark: #1d4ed8;
            --color-primary-light: #eff6ff;
            --color-text-main: #0f172a;     /* Dark Slate */
            --color-text-muted: #64748b;    /* Slate */
            --color-border: #e2e8f0;
            --color-bg-body: #f8fafc;
            --color-bg-card: #ffffff;
            
            /* Status Colors */
            --color-success: #10b981;
            --color-success-bg: #ecfdf5;
            --color-danger: #ef4444;
            --color-danger-bg: #fef2f2;
            --color-orange: #f97316;        /* Save App Button */
            --color-orange-hover: #ea580c;

            /* --- Logo Variables --- */
            --fpe-text: #202020;
            --fpe-dot: #ff0040;
            --fpe-glow-1: #a7a7a7;
            --fpe-glow-2: #000000;

            /* --- Dimensions --- */
            --nav-height: 72px;
            --radius-card: 24px;
            --radius-element: 12px;
            --font-main: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
            /* Using system font with heavy weight for Logo instead of Poppins */
            --font-logo: system-ui, -apple-system, sans-serif;
        }

        /* --- Reset --- */
        * { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { margin: 0; font-family: var(--font-main); background: var(--color-bg-body); color: var(--color-text-main); display: flex; flex-direction: column; min-height: 100vh; }
        button, select, input { font-family: inherit; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; padding: 0; margin: 0; }

        /* --- Navigation Bar --- */
        .ir-navbar {
            position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height);
            background: white; border-bottom: 1px solid var(--color-border);
            z-index: 999; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
        }
        .ir-container {
            max-width: 1280px; margin: 0 auto; padding: 0 20px; height: 100%;
            display: flex; align-items: center; 
        }

        /* Logo Styles */
        .ir-logo-link {
            display: inline-flex; align-items: center; gap: 6px;
            font-family: var(--font-logo); padding: 5px; position: relative; z-index: 20;
        }
        .fpe-text-wrapper {
            font-weight: 900; font-size: 39px; line-height: 1; color: var(--fpe-text);    font-family: system-ui;
            text-shadow: 0 4px 12px var(--fpe-glow-1); transition: all 0.3s ease; letter-spacing: -1.5px;
        }
        .ir-logo-link:hover .fpe-text-wrapper {
            text-shadow: 0 4px 15px var(--fpe-glow-1), 0 0 2px var(--fpe-text); transform: translateY(-1px);
        }
        .fpe-dot-anim { color: var(--fpe-dot); display: inline-block; animation: pulseDot 2s infinite ease-in-out; }
        @keyframes pulseDot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.8; } }

        /* Nav Menu (Desktop) - Using UL/LI for SEO */
        .ir-nav-list { 
            display: flex; align-items: center; 
            flex: 1; margin-left: 40px; 
        }
        
        .ir-menu-items { 
            display: flex; align-items: center; gap: 4px; 
            margin-right: auto; /* Push content to right */
        }
        
        .ir-item-wrapper { position: relative; }
        
        .ir-nav-btn, .ir-nav-link {
            display: flex; align-items: center; padding: 10px 14px;
            background: transparent; border: none; cursor: pointer;
            color: var(--color-text-main); border-radius: 8px;
            /* Removed Bold, using 500 for cleaner look */
            font-weight: 500; font-size: 15px; transition: background 0.2s;
        }
        .ir-nav-btn:hover, .ir-nav-link:hover { background-color: var(--color-border); }
        .ir-arrow-icon { margin-left: 6px; transition: transform 0.2s; }
        .ir-item-wrapper:hover .ir-arrow-icon { transform: rotate(180deg); }

        /* Dropdown */
        .ir-dropdown {
            position: absolute; top: 100%; left: 0; width: 220px;
            background: white; border: 1px solid var(--color-border);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 12px;
            padding: 8px; opacity: 0; visibility: hidden; transform: translateY(10px);
            transition: all 0.2s ease; z-index: 100;
        }
        .ir-item-wrapper:hover .ir-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
        .ir-dropdown a { display: block; padding: 10px 12px; font-size: 14px; color: var(--color-text-muted); border-radius: 8px; font-weight: 500; }
        .ir-dropdown a:hover { background-color: var(--color-primary-light); color: var(--color-primary); }

        /* Save App Button (Orange) */
        .ir-auth-desktop { display: flex; align-items: center; }
        
        .btn-save-app {
            background-color: var(--color-orange); color: white;
            padding: 10px 24px; border-radius: 15px; border: none;
            font-weight: 700; font-size: 14px; cursor: pointer;
            transition: transform 0.2s, background 0.2s;
            display: flex; align-items: center; gap: 6px;
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
        }
        .btn-save-app:hover { background-color: var(--color-orange-hover); transform: translateY(-1px); }
        .btn-save-app svg { width: 18px; height: 18px; }

        /* Hamburger (Mobile) */
        .ir-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }

        /* Mobile Responsive Nav */
        @media (max-width: 1023px) {
            /* Fix: Mobile Nav not Fixed */
            .ir-navbar { position: relative; height: auto; min-height: var(--nav-height); }
            
            .ir-container { justify-content: space-between; padding: 10px 20px; }
            .ir-hamburger { display: block; }
            
            .ir-nav-list {
                position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
                background: white; flex-direction: column; align-items: flex-start; padding: 80px 20px 20px;
                transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto; gap: 0;
                margin-left: 0; z-index: 998;
            }
            .ir-nav-list.active { transform: translateX(0); }
            
            /* Close button for mobile menu position */
            .ir-hamburger.active { position: fixed; top: 15px; right: 15px; z-index: 1000; }

            .ir-menu-items { flex-direction: column; width: 100%; gap: 0; margin-right: 0; }
            .ir-item-wrapper { width: 100%; border-bottom: 1px solid var(--color-border); }
            .ir-nav-btn, .ir-nav-link {         width: 100%;
        justify-content: space-between;
        padding: 18px 0;
        font-size: 1rem;
        color: var(--color-text-muted);
        font-weight: 600; }
            .ir-nav-btn:hover { background: none; }
            
            .ir-dropdown {
                position: static; width: 100%; opacity: 1; visibility: visible; transform: none;
                box-shadow: none; border: none; background: var(--color-bg-body);
                display: none; padding: 0; margin-bottom: 10px;
            }
            .ir-dropdown.show { display: block; }
            .ir-dropdown a { padding: 14px 16px; border-bottom: 1px solid #eee; }
            
            .ir-auth-desktop { display: none; }
            .ir-mobile-auth { width: 100%; margin-top: 30px; display: block; }
            .btn-save-app { width: 100%; justify-content: center; padding: 14px; font-size: 16px; }
        }
        @media (min-width: 1024px) { .ir-mobile-only { display: none; } }

        /* --- Modal (Save App Dialog) --- */
        .modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.6); z-index: 2000;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden; transition: 0.3s;
            backdrop-filter: blur(4px);
        }
        .modal-overlay.open { opacity: 1; visibility: visible; }
        .modal-card {
            background: white; padding: 30px; border-radius: 24px; max-width: 400px; width: 90%;
            text-align: center; transform: scale(0.9); transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
        }
        .modal-overlay.open .modal-card { transform: scale(1); }
        .modal-icon { width: 60px; height: 60px; background: var(--color-primary-light); color: var(--color-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
        .modal-title { font-size: 20px; font-weight: 800; margin: 0 0 10px; color: var(--color-text-main); }
        .modal-desc { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 25px; }
        .modal-close { position: absolute; top: 15px; right: 15px; background: none; border: none; cursor: pointer; color: #94a3b8; padding: 5px; }
		.tool-content h2{font-size:1.5rem;}
        
        /* --- Toast Notification --- */
        #toast-container { position: fixed; top: 90px; right: 20px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; }
        .toast {
            background: white; padding: 12px 20px; border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-left: 4px solid var(--color-primary);
            font-size: 13px; font-weight: 700; animation: slideIn 0.3s ease;
            min-width: 250px; display: flex; align-items: center; gap: 10px;
        }
        @keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
		
		
		
		.page-header { text-align: center; margin-bottom: 40px; }
        .page-title { font-size: 2.5rem; font-weight: 800; margin: 0 0 12px; letter-spacing: -0.03em; color: var(--color-text-main); }
        .page-title span { color: var(--color-primary); }
        .page-desc { font-size: 1.1rem; color: var(--color-text-muted); margin: 0; }
		
		        /* ---Tool Content Section (US Gov Style) --- */
        .tool-content {
            margin-top: 80px; text-align: left;
            padding-bottom: 60px;
            font-family: 'Open Sans', 'Segoe UI', sans-serif;
			padding: 60px 0;
			max-width: 800px;
			margin: 0 auto;
        }

        .tool-content h2 { 
            font-size: 1.5rem; margin-bottom: 30px; 
            color: #112e51; /* US Gov Navy Blue */
            border-bottom: 4px solid #0071bc; padding-bottom: 10px;
			margin: 0 auto;
        }
        .tool-section {
            background: white; padding: 30px; border-radius: 8px;
            border: 1px solid #e2e8f0; margin-bottom: 30px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }
        .tool-section h3 { 
            font-size: 1.4rem; font-weight: 700; margin-bottom: 15px; 
            color: #112e51; 
        }
        .tool-section p, .tool-section li { 
            font-size: 1rem; line-height: 1.7; color: #475569; margin-bottom: 12px; 
        }
		
		.tool-content img { max-width:-webkit-fill-available ;}
        
        /* Styled List */
        .tool-content { list-style: none;  }
        .tool-content li {
            position: relative; padding-left: 25px; margin-bottom: 10px;
        }
        .tool-content li::before {
            content: '✓'; color: #2563eb; font-weight: bold; position: absolute; left: 0; top: 0;
        }
        .tool-content li.no::before {
            content: '✕'; color: #ef4444;
        }

        /* Callout Box */
        .callout {
            border-left: 5px solid #0071bc; /* Link Blue */
            background: #f0f7fb; padding: 20px; margin: 20px 0;
            border-radius: 0 8px 8px 0;
			font-size: small;
        }
        .callout h4 { margin: 0 0 10px; color: #112e51; font-weight: 700; }
        .callout p { margin: 0; font-size: 0.95rem; }

        .hidden { display: none !important; }

	   
	   
	    /* Mobile */
        @media (max-width: 1023px) {
            .pfe-main { padding-top: 20px; }
            .editor-layout { display: flex; flex-direction: column; height: auto; gap: 0; }
            .cropper-wrapper { height: 400px; }
            .sidebar-area { width: 100%; height: auto; border-radius: 0; border: none; box-shadow: none; position: static; max-height: none; }
			.page-title {font-size: 1.5rem;}
			.tool-content {padding: 20px 0;}
		}