header.tcl-header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
  /* Remove any gap between header and content */
  .tcl-navigation {
    margin-bottom: 0 !important;
    border-bottom: none !important;
  }
  /* Professional Government Theme Styles */
  :root {
    --tcl-primary: #1a365d;
    --tcl-primary-dark: #2c5282;
    --tcl-primary-light: #3182ce;
    --tcl-accent: #ff9500;
    --tcl-success: #38a169;
    --tcl-warning: #d69e2e;
    --tcl-danger: #e53e3e;
    --tcl-white: #ffffff;
    --tcl-gray-50: #f7fafc;
    --tcl-gray-100: #edf2f7;
    --tcl-gray-200: #e2e8f0;
    --tcl-gray-300: #cbd5e0;
    --tcl-gray-400: #a0aec0;
    --tcl-gray-500: #718096;
    --tcl-gray-600: #4a5568;
    --tcl-gray-700: #2d3748;
    --tcl-gray-800: #1a202c;
    --tcl-gray-900: #171923;
    --tcl-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --tcl-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --tcl-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --tcl-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --tcl-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  }
  
  /* Print Button Styles */
  .tcl-print-section {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-left: 1rem;
  }
  
  .tcl-print-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--tcl-primary);
    color: var(--tcl-white);
    border: 1px solid var(--tcl-primary);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .tcl-print-btn:hover,
  .tcl-print-btn:focus {
    background-color: var(--tcl-primary-dark);
    border-color: var(--tcl-primary-dark);
    color: var(--tcl-white);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .tcl-print-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  .tcl-print-btn i {
    font-size: 1rem;
  }
  
  .tcl-print-text {
    font-weight: 500;
  }
  
  /* Responsive print button */
  @media (max-width: 768px) {
    .tcl-print-section {
      margin-left: 0;
      padding-left: 0;
      margin-top: 0.5rem;
    }
    
    .tcl-print-btn {
      width: 100%;
      justify-content: center;
    }
  }
  
  /* Reset & Base */
  .tcl-gov-header * {
    box-sizing: border-box;
  }
  
  .tcl-gov-header {
    font-family: var(--tcl-font-sans);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--tcl-white);
    box-shadow: var(--tcl-shadow-md);
    margin-top: -25px; /* Reset margin to prevent content hiding */
  }
  
  /* Fix any potential white space before header */
  body {
    margin: 0 !important;
    padding: 0 !important;
  }
  
  html {
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .tcl-container {
    max-width: 1200px;
    margin: 0 auto; /* Center container with proper side margins */
    padding: 0 2rem; /* Better side padding like STQC */
    width: 100%;
    box-sizing: border-box;
  }
  
  
  /* Top Bar - STQC Style Compact */
  .tcl-top-bar {
    background: linear-gradient(135deg, var(--tcl-primary) 0%, var(--tcl-primary-dark) 100%);
    color: var(--tcl-white);
    padding: 0.4rem 0; /* Reduced from 0.75rem to match STQC */
    border-bottom: 2px solid var(--tcl-accent); /* Thinner border */
    min-height: 32px; /* Fixed height like STQC */
  }
  
  .tcl-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem; /* Reduced gap */
    min-height: 28px; /* Compact height */
  }
  
  .tcl-gov-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Reduced gap */
    font-weight: 600;
    font-size: 0.8rem; /* Smaller text */
  }
  
  .tcl-flag {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  }
  
  .tcl-gov-text {
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  }
  
  .tcl-top-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem; /* Much smaller gap like STQC */
    position: relative;
    z-index: 1000; /* Lower than font menu */
  }
  
  /* Accessibility Controls - STQC Style Compact */
  .tcl-accessibility {
    display: flex;
    align-items: center;
    gap: 0.3rem; /* Tighter spacing */
  }
  
  /* Skip to Content Link - STQC Style Compact */
  .tcl-skip-link {
    background: rgba(0, 0, 0, 0.8) !important;
    color: var(--tcl-white) !important;
    padding: 0.3rem 0.5rem !important; /* Smaller padding */
    border-radius: 0.25rem !important; /* Smaller radius */
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.75rem !important; /* Smaller text */
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
    order: -1; /* Ensure it appears first */
  }
  
  .tcl-skip-link:hover,
  .tcl-skip-link:focus {
    background: var(--tcl-white) !important;
    color: var(--tcl-primary) !important;
    outline: 3px solid #1B4332 !important;
    outline-offset: 2px !important;
    transform: translateY(-1px) !important;
    text-decoration: underline !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
    z-index: 10000 !important;
  }
  
  .tcl-font-control {
    position: relative;
    z-index: auto; /* Let the menu handle its own z-index */
  }
  
  .tcl-font-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--tcl-white);
    padding: 0.3rem 0.4rem; /* Smaller padding */
    border-radius: 0.25rem; /* Smaller radius */
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: var(--tcl-transition);
    position: relative;
    z-index: 1001; /* Lower z-index than menu */
    min-height: 24px; /* Fixed height */
  }
  
  .tcl-font-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-1px);
  }
  
  /* Font icon styling */
  .tcl-font-icon {
    font-size: 1rem !important;
    font-weight: 700 !important;
    font-family: Arial, sans-serif !important;
    line-height: 1 !important;
    letter-spacing: 0.5px !important;
    display: inline-block !important;
  }
  
  .tcl-font-menu {
    position: fixed !important; /* Changed to fixed positioning */
    top: auto !important;
    left: auto !important;
    background: var(--tcl-white);
    border: 1px solid var(--tcl-gray-200);
    border-radius: 0.375rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,0,0,0.1);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 4rem;
    display: none;
    z-index: 999999999 !important; /* Extremely high z-index */
  }
  
  .tcl-font-menu.show {
    display: block;
  }
  
  .tcl-font-menu li {
    margin: 0;
  }
  
  .tcl-font-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--tcl-gray-700);
    text-decoration: none;
    font-weight: 600;
    transition: var(--tcl-transition);
  }
  
  .tcl-font-menu a:hover {
    background: var(--tcl-gray-50);
    color: var(--tcl-primary);
  }
  
  .tcl-access-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--tcl-white);
    width: 24px; /* Much smaller like STQC */
    height: 24px;
    border-radius: 0.25rem; /* Smaller radius */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tcl-transition);
    font-size: 0.8rem; /* Smaller font */
  }
  
  .tcl-access-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-1px);
  }
  
  /* Make help button icon more visible */
  .tcl-keyboard-icon {
    font-size: 1.4rem !important;
    font-weight: 900 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
    display: inline-block !important;
    font-family: Arial, sans-serif !important;
    line-height: 1 !important;
  }
  
  /* Social Icons - STQC Style Compact */
  .tcl-social-icons {
    display: flex;
    gap: 0.25rem; /* Tighter spacing */
  }
  
  .tcl-social-link {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--tcl-white);
    width: 24px; /* Much smaller like STQC */
    height: 24px;
    border-radius: 0.25rem; /* Smaller radius */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--tcl-transition);
  }
  
  .tcl-social-link:hover {
    background: rgba(255,255,255,0.2);
    color: var(--tcl-white);
    transform: translateY(-1px);
  }
  
  .tcl-social-link:visited {
    background: rgba(255,255,255,0.1);
    color: var(--tcl-white) !important;
    border: 1px solid rgba(255,255,255,0.2);
  }
  
  /* Language Switcher */
  .tcl-lang-select {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--tcl-white);
    padding: 0.3rem 0.5rem; /* Smaller padding */
    border-radius: 0.25rem; /* Smaller radius */
    font-size: 0.75rem; /* Smaller font */
    font-weight: 600;
    cursor: pointer;
    transition: var(--tcl-transition);
    min-height: 24px; /* Fixed height */
  }
  
  .tcl-lang-select:hover {
    background: var(--tcl-white);
    color: var(--tcl-primary) !important;
  }
  
  .tcl-lang-select:focus {
    outline: 2px solid var(--tcl-white);
    outline-offset: 2px;
    background: var(--tcl-white);
    color: var(--tcl-primary) !important;
  }
  
  /* Fix dropdown option colors for accessibility */
  .tcl-lang-select option {
    background: var(--tcl-white);
    color: var(--tcl-primary);
    padding: 0.5rem;
  }
  
  .tcl-lang-select option:hover,
  .tcl-lang-select option:focus {
    background: var(--tcl-primary) !important;
    color: var(--tcl-white) !important;
  }
  
  .tcl-lang-select option:checked,
  .tcl-lang-select option[selected] {
    background: var(--tcl-primary) !important;
    color: var(--tcl-white) !important;
    font-weight: 600;
  }
  
  /* Main Header */
  .tcl-main-header {
    background: var(--tcl-white);
    padding: 0.4rem 0; /* Even more compact */
    border-bottom: 1px solid var(--tcl-gray-200);
    min-height: 50px; /* More compact height */
    display: flex;
    align-items: center;
  }
  
  .tcl-header-content {
    display: flex;
    justify-content: flex-start; /* Start from left side */
    align-items: center;
    gap: 2rem; /* More space between logo and actions */
    width: 100%;
    min-height: 40px; /* More compact content height */
  }
  
  /* STQC Style Brand Link */
  .tcl-brand-link.logo-align {
    display: flex;
    align-items: flex-start; /* Top align like STQC */
    gap: 0.5rem; /* More compact spacing */
    text-decoration: none;
    color: inherit;
    transition: var(--tcl-transition);
    padding: 0.5rem 0; /* Vertical padding for better alignment */
  }
  
  .tcl-brand-link:hover {
    transform: translateY(-1px);
  }
  
  /* 
   * Government Logo Guidelines:
   * - Minimum size: 48px x 48px (for accessibility)
   * - Recommended desktop: 112px x 112px (7rem) - Enhanced for optimal visibility
   * - Should maintain aspect ratio and clarity
   * - Must be visible against background
   */
  .tcl-logo {
    width: 3.5rem; /* More compact size */
    height: 3.5rem;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: var(--tcl-transition);
  }
  
  /* Responsive logo sizing - STQC Style */
  @media (max-width: 768px) {
    .tcl-logo {
      width: 3rem; /* More compact tablet size */
      height: 3rem;
    }
    
    .logo-align {
      gap: 0.4rem; /* Tighter spacing on tablet */
    }
    
    .tcl-org-name {
      font-size: 1rem; /* More compact text on tablet */
    }
    
    .tcl-org-tagline {
      font-size: 0.7rem; /* More compact tagline on tablet */
    }
  }
  
  @media (max-width: 480px) {
    .tcl-logo {
      width: 2.5rem; /* More compact mobile size */
      height: 2.5rem;
      min-width: 48px; /* Minimum accessibility requirement */
      min-height: 48px;
    }
    
    .logo-align {
      gap: 0.3rem; /* Even tighter on mobile */
    }
    
    .tcl-org-name {
      font-size: 0.9rem; /* More compact mobile text */
    }
    
    .tcl-org-tagline {
      font-size: 0.65rem; /* More compact mobile tagline */
    }
  }
  
  /* STQC Style Brand Text - Bigger and More Visible */
  .tcl-org-name {
    margin: 0;
    font-size: 1.1rem; /* More compact size */
    font-weight: 700; /* Slightly less bold */
    color: var(--tcl-primary);
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0,0,0,0.15); /* Stronger shadow */
    display: flex;
    flex-direction: column; /* Stack name and tagline vertically */
    gap: 0.1rem; /* More compact gap */
  }
  
  .tcl-org-tagline {
    margin: 0;
    font-size: 0.75rem; /* More compact tagline */
    color: var(--tcl-gray-600); /* Lighter for less emphasis */
    font-weight: 500; /* Lighter weight */
    line-height: 1.3;
    display: block; /* Ensure it's a block element */
  }
  
  /* STQC Style Brand Text Container */
  .brand-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1;
    min-height: 48px; /* Ensure consistent height */
  }
  
  /* Header Actions - Right Aligned */
  .tcl-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1000; /* Lower than font menu */
    margin-left: auto; /* Push to right side */
  }
  
  .tcl-search-btn,
  .tcl-shop-btn,
  .tcl-menu-btn {
    background: var(--tcl-white);
    border: 1px solid var(--tcl-primary); /* Thinner border */
    color: var(--tcl-primary);
    padding: 0.4rem 0.8rem; /* Much smaller padding like STQC */
    border-radius: 0.25rem; /* Smaller radius */
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem; /* Smaller gap */
    transition: var(--tcl-transition);
    font-size: 0.75rem; /* Smaller font */
    white-space: nowrap;
    position: relative;
    z-index: 999; /* Ensure lower than font menu */
  }
  
  .tcl-search-btn:hover,
  .tcl-shop-btn:hover,
  .tcl-menu-btn:hover {
    background: var(--tcl-primary); /* Solid primary background */
    color: var(--tcl-white); /* White text for visibility */
    transform: translateY(-1px);
    box-shadow: var(--tcl-shadow-md);
  }
  
  .tcl-hamburger {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    width: 1.25rem;
  }
  
  .tcl-hamburger span {
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: var(--tcl-transition);
  }
  
  /* Search Bar */
  .tcl-search-bar {
    background: var(--tcl-gray-50);
    border-bottom: 1px solid var(--tcl-gray-200);
    padding: 1rem 0;
    display: none;
  }
  
  .tcl-search-bar.show {
    display: block;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-search-form {
    display: flex;
    max-width: 32rem;
    margin: 0 auto;
    background: var(--tcl-white);
    border: 2px solid var(--tcl-primary);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--tcl-shadow-md);
  }
  
  .tcl-search-input {
    flex: 1;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    background: transparent;
  }
  
  .tcl-search-input:focus {
    outline: none;
  }
  
  .tcl-search-submit,
  .tcl-search-close {
    border: none;
    padding: 1rem;
    cursor: pointer;
    transition: var(--tcl-transition);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tcl-search-submit {
    background: var(--tcl-primary); /* Fixed typo - was var(--l-primary) */
    color: var(--tcl-white);
  }
  
  .tcl-search-submit:hover {
    background: var(--tcl-primary-light);
  }
  
  .tcl-search-close {
    background: var(--tcl-danger);
    color: var(--tcl-white);
    font-size: 1.25rem;
  }
  
  .tcl-search-close:hover {
    background: #c53030;
  }
  
  /* Shop Menu */
  .tcl-shop-menu {
    background: var(--tcl-white);
    border-bottom: 1px solid var(--tcl-gray-200);
    padding: 1.5rem 0;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .tcl-shop-menu.show {
    display: block;
    animation: scaleIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-shop-menu-content {
    position: relative;
    text-align: center;
  }
  
  .tcl-shop-menu h3 {
    color: var(--tcl-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
  }
  
  .tcl-shop-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 40rem;
    margin: 0 auto;
  }
  
  .tcl-shop-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: var(--tcl-gray-50);
    border: 2px solid var(--tcl-gray-200);
    border-radius: 0.75rem;
    text-decoration: none;
    color: var(--tcl-gray-700);
    transition: var(--tcl-transition);
    min-width: 140px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
  .tcl-shop-link:hover,
  .tcl-shop-link:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
    outline: none;
  }
  
  .tcl-shop-link.official-store:hover,
  .tcl-shop-link.official-store:focus {
    border-color: var(--tcl-primary);
    background: var(--tcl-primary);
    color: white;
  }
  
  .tcl-shop-link.flipkart:hover,
  .tcl-shop-link.flipkart:focus {
    border-color: #f16e00;
    background: #f16e00;
    color: white;
  }
  
  .tcl-shop-link.amazon:hover,
  .tcl-shop-link.amazon:focus {
    border-color: #ff9900;
    background: #ff9900;
    color: white;
  }
  
  .tcl-shop-link i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .tcl-shop-link span {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }
  
  .tcl-shop-link small {
    font-size: 0.75rem;
    opacity: 0.8;
  }
  
  .tcl-shop-link:hover i,
  .tcl-shop-link:focus i {
    color: white !important;
  }
  
  .tcl-shop-close {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--tcl-danger);
    color: white;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 0 0 0 0.5rem;
    font-size: 1rem;
    line-height: 1;
    transition: var(--tcl-transition);
  }
  
  .tcl-shop-close:hover {
    background: #c53030;
  }
  
  /* Navigation */
  .tcl-navigation {
    background: var(--tcl-gray-100);
    border-bottom: 1px solid var(--tcl-gray-200);
    display: none;
  }
  
  .tcl-navigation.show {
    display: block;
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-nav-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .tcl-nav-item {
    position: relative;
    border-bottom: 1px solid var(--tcl-gray-200);
  }
  
  .tcl-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem; /* Reduced from 1rem for compact height */
    color: var(--tcl-gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem; /* Slightly smaller font */
    transition: var(--tcl-transition);
    border: 2px solid transparent;
    outline: none;
  }
  
  .tcl-nav-button {
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    text-align: left;
  }
  
  .tcl-nav-link-hidden {
    display: none;
  }
  
  .tcl-nav-link:hover,
  .tcl-nav-button:hover {
    background: var(--tcl-primary);
    color: var(--tcl-white);
  }
  
  .tcl-nav-link:focus,
  .tcl-nav-button:focus {
    outline: none;
    border-color: var(--tcl-accent);
    background: var(--tcl-primary-light);
    color: var(--tcl-white);
    box-shadow: inset 0 0 0 1px var(--tcl-accent);
  }
  
  .tcl-nav-button[aria-expanded="true"] {
    background: var(--tcl-primary);
    color: var(--tcl-white);
  }
  
  .tcl-submenu-arrow {
    font-size: 0.75rem;
    transition: var(--tcl-transition);
    margin-left: 0.5rem;
  }
  
  .tcl-nav-item.open .tcl-submenu-arrow {
    transform: rotate(180deg);
  }
  
  /* Submenu */
  .tcl-submenu {
    background: var(--tcl-primary);
    border-left: 3px solid var(--tcl-accent);
    list-style: none;
    margin: 0;
    padding: 0;
    display: none; /* Hidden by default */
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
  }
  
  /* Show when parent has .open class */
  .tcl-nav-item.open > .tcl-submenu {
    display: block;
  }
  
  .tcl-submenu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .tcl-submenu li:last-child {
    border-bottom: none;
  }
  
  .tcl-submenu a {
    display: block;
    padding: 0.5rem 1rem 0.5rem 2rem; /* Reduced padding for compact height */
    color: #ffffff;
    text-decoration: none;
    transition: var(--tcl-transition);
    font-size: 0.85rem; /* Slightly smaller font */
    border: 2px solid transparent;
    outline: none;
  }
  
  .tcl-submenu a:hover {
    background: #ffffff;
    color: var(--tcl-primary);
    padding-left: 2.25rem; /* Reduced from 2.5rem */
  }
  
  .tcl-submenu a:focus {
    outline: none;
    border-color: var(--tcl-accent);
    background: var(--tcl-white);
    color: var(--tcl-primary);
    padding-left: 2.25rem; /* Reduced from 2.5rem */
    box-shadow: inset 0 0 0 1px var(--tcl-accent);
  }
  
  /* Desktop Styles */
  @media (min-width: 901px) {
    .tcl-menu-btn {
      display: none;
    }
    
    .tcl-navigation {
      display: block !important;
    }
    
    .tcl-nav-list {
      flex-direction: row;
    }
    
    .tcl-nav-item {
      border-bottom: none;
      border-right: 1px solid var(--tcl-gray-200);
    }
    
    .tcl-nav-item:last-child {
      border-right: none;
    }
    
    .tcl-nav-link {
      white-space: nowrap;
      padding: 0.6rem 1rem; /* Reduced for compact height like STQC */
    }
    
    .tcl-submenu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 12rem;
      border: 1px solid var(--tcl-gray-200);
      border-left: 3px solid var(--tcl-primary);
      border-radius: 0 0 0.375rem 0.375rem;
      box-shadow: var(--tcl-shadow-lg);
      z-index: 1000;
    }
    
    /* Desktop hover/focus behavior */
    .tcl-nav-item:hover > .tcl-submenu,
    .tcl-nav-item:focus-within > .tcl-submenu {
      display: block;
    }
    
    /* Desktop STQC Style Adjustments - Bigger and More Visible */
    .tcl-org-name {
      font-size: 1.6rem; /* Much bigger on desktop for visibility */
    }
    
    .tcl-org-tagline {
      font-size: 1rem; /* Bigger tagline on desktop */
    }
    
    .logo-align {
      gap: 1rem; /* Slightly more space on desktop */
    }
    
    /* Compact header specific adjustments - STQC Style */
    .tcl-main-header {
      min-height: 65px; /* Compact like STQC */
    }
    
    .tcl-header-content {
      min-height: 50px; /* Compact content height */
    }
  }
  
  /* Mobile and High Zoom Layout */
  @media (max-width: 767px), (min-width: 768px) and (max-width: 900px) {
    /* Common styles for mobile and high zoom */
    .tcl-header-content {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem; /* Reduced from 1rem */
      min-height: auto; /* Allow flexible height on mobile */
    }
    
    .tcl-brand {
      text-align: center;
    }
    
    .tcl-main-header {
      padding: 0.75rem 0; /* Reduced mobile padding */
      min-height: auto; /* Allow flexible height on mobile */
    }
    
    .tcl-org-name {
      font-size: 1.3rem; /* Compact mobile size */
    }
    
    .tcl-org-tagline {
      font-size: 0.75rem; /* Compact mobile size */
    }
    
    .tcl-header-actions {
      gap: 0.5rem; /* Reduced gap on mobile */
    }
    
    .tcl-search-btn,
    .tcl-shop-btn,
    .tcl-menu-btn {
      padding: 0.5rem 0.75rem; /* More compact on mobile */
      font-size: 0.85rem;
      min-height: 36px; /* Smaller minimum height on mobile */
    }
    
    .tcl-nav-list {
      flex-direction: column;
      width: 100%;
    }
    
    .tcl-nav-item {
      border-right: none;
      border-bottom: 1px solid var(--tcl-gray-200);
      position: relative;
    }
    
    .tcl-nav-item:last-child {
      border-bottom: none;
    }
    
    .tcl-nav-link,
    .tcl-nav-button {
      padding: 1rem;
      font-size: 1rem;
      font-weight: 600;
      display: block;
      width: 100%;
      text-align: left;
    }
    
    /* Style submenu as block under parent */
    .tcl-submenu {
      position: static;
      width: 100%;
      box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
      border-top: 1px solid rgba(255,255,255,0.1);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      opacity: 0;
    }
    
    /* Show submenu when parent is hovered, focused, or has .open class */
    .tcl-nav-item:hover > .tcl-submenu,
    .tcl-nav-item:focus-within > .tcl-submenu,
    .tcl-nav-item.open > .tcl-submenu {
      display: block;
      max-height: 500px; /* Large enough for any submenu */
      opacity: 1;
    }
    
    /* Clear focus styling */
    .tcl-nav-button:focus {
      background-color: var(--tcl-primary);
      color: var(--tcl-white);
      border-color: var(--tcl-accent);
      outline: 2px solid var(--tcl-accent);
    }
    
    /* Rotate arrow when open */
    .tcl-nav-item.open .tcl-submenu-arrow,
    .tcl-nav-item:hover .tcl-submenu-arrow,
    .tcl-nav-item:focus-within .tcl-submenu-arrow {
      transform: rotate(180deg);
    }
    
    /* Mobile shopping menu styles */
    .tcl-shop-links {
      flex-direction: column;
      gap: 0.75rem;
      max-width: 100%;
    }
    
    .tcl-shop-link {
      min-width: auto;
      width: 100%;
      max-width: 280px;
      margin: 0 auto;
      padding: 0.75rem;
    }
    
    .tcl-shop-link i {
      font-size: 1.25rem;
    }
    
    .tcl-shop-menu-content {
      padding: 0 1rem;
    }
  }
  
  /* Animations */
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-15px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  @keyframes slideUp {
    0% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    100% {
      opacity: 0;
      transform: translateY(-15px) scale(0.95);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes bounceIn {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.02);
    }
    100% {
      transform: scale(1);
    }
  }
  
  @keyframes shimmer {
    0% {
      background-position: -200% 0;
    }
    100% {
      background-position: 200% 0;
    }
  }
  
  /* Enhanced smooth transitions for all interactive elements */
  * {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Smooth entrance animations */
  .tcl-search-bar.show {
    display: block;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-shop-menu.show {
    display: block;
    animation: scaleIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-navigation.show {
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-font-menu.show {
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Enhanced button animations */
  .tcl-search-btn,
  .tcl-shop-btn,
  .tcl-menu-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-search-btn::before,
  .tcl-shop-btn::before,
  .tcl-menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }
  
  .tcl-search-btn:hover::before,
  .tcl-shop-btn:hover::before,
  .tcl-menu-btn:hover::before {
    left: 100%;
  }
  
  .tcl-search-btn:hover,
  .tcl-shop-btn:hover,
  .tcl-menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  
  .tcl-search-btn:active,
  .tcl-shop-btn:active,
  .tcl-menu-btn:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
  }
  
  /* Enhanced shopping links animations */
  .tcl-shop-link {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-shop-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }
  
  .tcl-shop-link:hover::before,
  .tcl-shop-link:focus::before {
    transform: translateX(100%);
  }
  
  .tcl-shop-link i {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-shop-link:hover i,
  .tcl-shop-link:focus i {
    transform: scale(1.1) rotate(5deg);
  }
  
  .tcl-shop-link span,
  .tcl-shop-link small {
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Staggered animation for shopping links */
  .tcl-shop-links .tcl-shop-link:nth-child(1) {
    animation: slideInLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
  }
  
  .tcl-shop-links .tcl-shop-link:nth-child(2) {
    animation: slideInLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
  }
  
  .tcl-shop-links .tcl-shop-link:nth-child(3) {
    animation: slideInLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
  }
  
  /* Enhanced navigation animations */
  .tcl-nav-link,
  .tcl-nav-button {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-nav-link::before,
  .tcl-nav-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--tcl-accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
  }
  
  .tcl-nav-link:hover::before,
  .tcl-nav-button:hover::before,
  .tcl-nav-link:focus::before,
  .tcl-nav-button:focus::before {
    width: 80%;
  }
  
  /* Submenu smooth animations */
  .tcl-submenu {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top;
  }
  
  .tcl-submenu a {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-submenu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(255,255,255,0.1);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-submenu a:hover::before,
  .tcl-submenu a:focus::before {
    width: 100%;
  }
  
  /* Enhanced submenu arrow animation */
  .tcl-submenu-arrow {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
  }
  
  .tcl-nav-item:hover .tcl-submenu-arrow,
  .tcl-nav-item.open .tcl-submenu-arrow {
    transform: rotate(180deg) scale(1.1);
  }
  
  /* Logo and brand animations */
  .tcl-logo {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-brand-link:hover .tcl-logo {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
  }
  
  .tcl-org-name {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-brand-link:hover .tcl-org-name {
    color: var(--tcl-primary-light);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }
  
  /* Social icons animation */
  .tcl-social-link {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-social-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(45deg, var(--tcl-primary), var(--tcl-accent));
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
  }
  
  .tcl-social-link:hover::after {
    opacity: 1;
  }
  
  .tcl-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    color: white;
  }
  
  /* Accessibility controls animations */
  .tcl-access-btn,
  .tcl-font-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-access-btn:hover,
  .tcl-font-btn:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(255,255,255,0.3);
  }
  
  /* Language selector smooth transition */
  .tcl-lang-select {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-lang-select:hover,
  .tcl-lang-select:focus {
    transform: scale(1.02);
  }
  
  /* Mobile hamburger animation */
  .tcl-hamburger span {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
  }
  
  .tcl-menu-btn[aria-expanded="true"] .tcl-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .tcl-menu-btn[aria-expanded="true"] .tcl-hamburger span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }
  
  .tcl-menu-btn[aria-expanded="true"] .tcl-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Smooth focus indicators */
  *:focus {
    outline: 2px solid var(--tcl-accent) !important;
    outline-offset: 2px !important;
    transition: outline 0.2s ease !important;
  }
  
  /* Loading shimmer effect for buttons */
  .tcl-search-btn:active,
  .tcl-shop-btn:active,
  .tcl-menu-btn:active {
    background: linear-gradient(90deg, var(--tcl-primary) 25%, var(--tcl-primary-light) 50%, var(--tcl-primary) 75%);
    background-size: 200% 100%;
    animation: shimmer 0.6s ease-in-out;
  }
  
  /* Top bar elements animation */
  .tcl-gov-badge {
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
  }
  
  .tcl-top-actions {
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
  }
  
  /* Reduced motion for accessibility */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    
    .tcl-shop-link:hover i,
    .tcl-shop-link:focus i {
      transform: none;
    }
    
    .tcl-brand-link:hover .tcl-logo {
      transform: none;
    }
  }
  
  /* High Contrast Mode - Full Page */
  .tcl-high-contrast {
    --tcl-primary: #000080;
    --tcl-white: #ffffff;
    --tcl-gray-700: #000000;
    --tcl-gray-600: #000000;
  }
  
  .tcl-high-contrast .tcl-nav-link:hover {
    background: #000080 !important;
    color: #ffffff !important;
  }
  
  /* Full page high contrast styles */
  body.tcl-high-contrast {
    background: #ffffff !important;
    color: #000000 !important;
  }
  
  body.tcl-high-contrast * {
    border-color: #000000 !important;
  }
  
  body.tcl-high-contrast a {
    color: #000080 !important;
  }
  
  /* Override for footer links in high contrast mode */
  body.tcl-high-contrast .site-footer a,
  body.tcl-high-contrast .gigw-mandatory-links a,
  body.tcl-high-contrast .footer-section a {
    color: #000000 !important;
  }
  
  body.tcl-high-contrast a:hover,
  body.tcl-high-contrast a:focus {
    color: #ffffff !important;
    background: #000080 !important;
  }
  
  /* Override for footer links hover states in high contrast mode */
  body.tcl-high-contrast .site-footer a:hover,
  body.tcl-high-contrast .site-footer a:focus,
  body.tcl-high-contrast .gigw-mandatory-links a:hover,
  body.tcl-high-contrast .gigw-mandatory-links a:focus,
  body.tcl-high-contrast .footer-section a:hover,
  body.tcl-high-contrast .footer-section a:focus {
    color: #ffffff !important;
    background: #000000 !important;
  }
  
  body.tcl-high-contrast button {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
  }
  
  body.tcl-high-contrast button:hover,
  body.tcl-high-contrast button:focus {
    background: #000080 !important;
    color: #ffffff !important;
  }
  
  /* High contrast skip button */
  body.tcl-high-contrast .tcl-skip-link {
    background: #000000 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
  }
  
  body.tcl-high-contrast .tcl-skip-link:hover,
  body.tcl-high-contrast .tcl-skip-link:focus {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
    outline: 3px solid #000080 !important;
    outline-offset: 2px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.8) !important;
    z-index: 10000 !important;
  }
  
  /* High contrast accessibility buttons */
  body.tcl-high-contrast .tcl-access-btn {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
  }
  
  body.tcl-high-contrast .tcl-access-btn:hover,
  body.tcl-high-contrast .tcl-access-btn:focus {
    background: #000080 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
  }
  
  /* High contrast font button */
  body.tcl-high-contrast .tcl-font-btn {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
  }
  
  body.tcl-high-contrast .tcl-font-btn:hover,
  body.tcl-high-contrast .tcl-font-btn:focus {
    background: #000080 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
  }
  
  /* High contrast font icon */
  body.tcl-high-contrast .tcl-font-icon {
    color: #000000 !important;
  }
  
  body.tcl-high-contrast .tcl-font-btn:hover .tcl-font-icon,
  body.tcl-high-contrast .tcl-font-btn:focus .tcl-font-icon {
    color: #ffffff !important;
  }
  
  /* High contrast font menu */
  body.tcl-high-contrast .tcl-font-menu {
    background: #ffffff !important;
    border: 2px solid #000000 !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5) !important;
  }
  
  body.tcl-high-contrast .tcl-font-menu a {
    color: #000000 !important;
    border-bottom: 1px solid #cccccc !important;
  }
  
  body.tcl-high-contrast .tcl-font-menu a:hover,
  body.tcl-high-contrast .tcl-font-menu a:focus {
    background: #000080 !important;
    color: #ffffff !important;
  }
  
  /* High contrast social links */
  body.tcl-high-contrast .tcl-social-link {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
  }
  
  body.tcl-high-contrast .tcl-social-link:hover,
  body.tcl-high-contrast .tcl-social-link:focus {
    background: #000080 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
  }
  
  /* High contrast language selector */
  body.tcl-high-contrast .tcl-lang-select {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
  }
  
  body.tcl-high-contrast .tcl-lang-select:hover,
  body.tcl-high-contrast .tcl-lang-select:focus {
    background: #000080 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
  }
  
  body.tcl-high-contrast .tcl-lang-select option {
    background: #ffffff !important;
    color: #000000 !important;
  }
  
  body.tcl-high-contrast .tcl-lang-select option:hover,
  body.tcl-high-contrast .tcl-lang-select option:focus,
  body.tcl-high-contrast .tcl-lang-select option[selected] {
    background: #000080 !important;
    color: #ffffff !important;
  }
  
  /* High contrast text input and form elements */
  body.tcl-high-contrast input,
  body.tcl-high-contrast textarea,
  body.tcl-high-contrast select {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
  }
  
  body.tcl-high-contrast input:focus,
  body.tcl-high-contrast textarea:focus,
  body.tcl-high-contrast select:focus {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000080 !important;
    outline: 3px solid #000080 !important;
  }
  
  /* High contrast navigation elements */
  body.tcl-high-contrast .tcl-nav-link {
    color: #000000 !important;
    background: transparent !important;
    border-bottom: 1px solid #cccccc !important;
  }
  
  body.tcl-high-contrast .tcl-nav-link:hover,
  body.tcl-high-contrast .tcl-nav-link:focus {
    background: #000080 !important;
    color: #ffffff !important;
    border-bottom: 1px solid #ffffff !important;
  }
  
  /* High contrast submenu */
  body.tcl-high-contrast .tcl-submenu {
    background: #ffffff !important;
    border: 2px solid #000000 !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5) !important;
  }
  
  body.tcl-high-contrast .tcl-submenu a {
    color: #000000 !important;
    border-bottom: 1px solid #cccccc !important;
  }
  
  body.tcl-high-contrast .tcl-submenu a:hover,
  body.tcl-high-contrast .tcl-submenu a:focus {
    background: #000080 !important;
    color: #ffffff !important;
  }
  
  /* High contrast main content areas */
  body.tcl-high-contrast main,
  body.tcl-high-contrast article,
  body.tcl-high-contrast section {
    background: #ffffff !important;
    color: #000000 !important;
  }
  
  /* High contrast headings */
  body.tcl-high-contrast h1,
  body.tcl-high-contrast h2,
  body.tcl-high-contrast h3,
  body.tcl-high-contrast h4,
  body.tcl-high-contrast h5,
  body.tcl-high-contrast h6 {
    color: #000000 !important;
  }
  
  /* Override for footer elements in high contrast mode */
  body.tcl-high-contrast .site-footer,
  body.tcl-high-contrast .site-footer *,
  body.tcl-high-contrast .site-footer p,
  body.tcl-high-contrast .site-footer span,
  body.tcl-high-contrast .site-footer li,
  body.tcl-high-contrast .site-footer div {
    color: #000000 !important;
    background-color: #ffffff !important;
  }
  
  body.tcl-high-contrast .gigw-mandatory-links,
  body.tcl-high-contrast .gigw-mandatory-links * {
    color: #000000 !important;
    background-color: #ffffff !important;
    border-color: #000000 !important;
  }
  
  body.tcl-high-contrast .footer-section {
    background-color: #ffffff !important;
    border: 1px solid #000000 !important;
  }
  
  /* Override for contact information in high contrast mode */
  body.tcl-high-contrast .footer-section:first-child,
  body.tcl-high-contrast .footer-section:first-child *,
  body.tcl-high-contrast .footer-section:first-child h2,
  body.tcl-high-contrast .footer-section:first-child ul,
  body.tcl-high-contrast .footer-section:first-child li,
  body.tcl-high-contrast .footer-section:first-child p,
  body.tcl-high-contrast .footer-section:first-child span {
    color: #000000 !important;
    background-color: #ffffff !important;
  }
  
  /* Specific override for contact email */
  body.tcl-high-contrast .contact-email,
  body.tcl-high-contrast .contact-email *,
  body.tcl-high-contrast .contact-email a {
    color: #000000 !important;
    background-color: #ffffff !important;
    border: 1px solid #000000 !important;
  }
  
  body.tcl-high-contrast .contact-email a:hover {
    color: #ffffff !important;
    background-color: #000000 !important;
  }
  
  /* Comprehensive footer text override for high contrast mode */
  body.tcl-high-contrast .site-footer,
  body.tcl-high-contrast .site-footer *,
  body.tcl-high-contrast .site-footer p,
  body.tcl-high-contrast .site-footer span,
  body.tcl-high-contrast .site-footer li,
  body.tcl-high-contrast .site-footer div,
  body.tcl-high-contrast .site-footer h1,
  body.tcl-high-contrast .site-footer h2,
  body.tcl-high-contrast .site-footer h3,
  body.tcl-high-contrast .site-footer h4,
  body.tcl-high-contrast .site-footer h5,
  body.tcl-high-contrast .site-footer h6,
  body.tcl-high-contrast .site-footer strong,
  body.tcl-high-contrast .site-footer b,
  body.tcl-high-contrast .site-footer em,
  body.tcl-high-contrast .site-footer i {
    color: #000000 !important;
  }
  
  /* Ensure footer background is white */
  body.tcl-high-contrast .site-footer {
    background: #ffffff !important;
    border-top-color: #000000 !important;
  }
  
  /* Override any remaining white text */
  body.tcl-high-contrast .site-footer *:not(a) {
    color: #000000 !important;
  }
  
  /* High contrast tables */
  body.tcl-high-contrast table {
    background: #ffffff !important;
    border: 2px solid #000000 !important;
  }
  
  body.tcl-high-contrast th,
  body.tcl-high-contrast td {
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #000000 !important;
  }
  
  body.tcl-high-contrast th {
    background: #cccccc !important;
    color: #000000 !important;
    font-weight: bold !important;
  }
  
  /* High contrast cards and panels */
  body.tcl-high-contrast .card,
  body.tcl-high-contrast .panel,
  body.tcl-high-contrast .widget {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
  }
  
  /* Font Size Scaling - Full Page (Instant) */
  body.tcl-font-large {
    font-size: 115% !important;
  }
  
  body.tcl-font-large * {
    font-size: inherit !important;
  }
  
  body.tcl-font-small {
    font-size: 85% !important;
  }
  
  body.tcl-font-small * {
    font-size: inherit !important;
  }
  
  /* Header specific font scaling (maintains existing behavior) */
  .tcl-gov-header.tcl-font-large {
    font-size: 115%;
  }
  
  .tcl-gov-header.tcl-font-small {
    font-size: 85%;
  }
  
  /* Print Styles */
  @media print {
    .tcl-top-bar,
    .tcl-search-bar,
    .tcl-shop-menu,
    .tcl-header-actions {
      display: none !important;
    }
  }
  
  /* Body margin adjustment for compact header */
  body {
    margin-top: 24px !important; /* Adjusted for smaller top bar height */
  }
  
  /* Medium Zoom (200%) */
  @media (min-width: 901px) and (max-width: 1200px) {
    .tcl-org-name {
      font-size: 1.5rem;
    }
    
    .tcl-org-tagline {
      font-size: 0.85rem;
    }
    
    .tcl-nav-link,
    .tcl-nav-button {
      padding: 0.75rem 1rem;
      font-size: 0.9rem;
    }
    
    .tcl-submenu {
      min-width: 10rem;
    }
    
    /* Ensure submenus are visible */
    .tcl-nav-item.open > .tcl-submenu {
      display: block !important;
    }
  }
  
  @media (min-width: 768px) and (max-width: 900px) {
    /* 400% zoom equivalent */
    .tcl-header-content {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    
    .tcl-brand {
      text-align: center;
    }
    
    .tcl-org-name {
      font-size: 1.25rem;
    }
    
    .tcl-org-tagline {
      font-size: 0.8rem;
    }
    
    .tcl-nav-list {
      flex-direction: column;
      width: 100%;
    }
    
    .tcl-nav-item {
      border-right: none;
      border-bottom: 1px solid var(--tcl-gray-200);
    }
    
    .tcl-nav-item:last-child {
      border-bottom: none;
    }
    
    .tcl-nav-link,
    .tcl-nav-button {
      padding: 1rem;
      font-size: 1rem;
      font-weight: 600;
    }
    
    .tcl-submenu {
      position: static;
      box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
      border-radius: 0;
      min-width: auto;
      width: 100%;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Focus must override other display rules */
    .tcl-submenu {
      display: none;
    }
    
    .tcl-nav-item.open > .tcl-submenu,
    .tcl-submenu.show,
    .tcl-submenu.focus-open {
      display: block !important;
    }
    
    /* Visual indicator for focused menu */
    .tcl-nav-button:focus {
      background-color: var(--tcl-primary);
      color: var(--tcl-white);
      border-color: var(--tcl-accent);
      outline: 2px solid var(--tcl-accent);
    }
  }
  
  /* Critical focus display rules */
  .tcl-submenu.show, 
  .tcl-submenu.focus-open {
    display: block !important; /* Force visibility */
  }
  
  /* Force open state at all zoom levels */
  .tcl-nav-item.open > .tcl-submenu {
    display: block !important; /* Force visibility */
  }
  
  /* Keyframe Animations */
  @keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(-15px) scale(0.95);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  @keyframes slideUp {
    0% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    100% {
      opacity: 0;
      transform: translateY(-15px) scale(0.95);
    }
  }
  
  /* Font size changes are now instant - no animations needed */
  
  /* Smooth shimmer effect */
  @keyframes shimmer {
    0% {
      background-position: -200% 0;
    }
    100% {
      background-position: 200% 0;
    }
  }