
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            overflow-x: hidden;
            background: #f8f9fa;
        }

        /* Header Styles */
        .site-header {
            background: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            position: relative;
        }

        .logo-sectizn {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
        }

        .logo-sectizn img {
            height: 60px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo-sectizn img:hover {
            transform: scale(1.05);
        }

        .logo-text h1 {
            font-size: 1.6rem;
            color: #333;
            line-height: 1.2;
        }

        .logo-text p {
            font-size: 0.9rem;
            color: #666;
            margin-top: 4px;
        }

        .job-button {
            background: #007bff;
            color: white;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 0.85rem;
            text-decoration: none;
            transition: background 0.3s ease;
        }

        .job-button:hover {
            background: #0056b3;
        }

        /* Navigation Styles */
        .nav-menu {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 8px 12px;
            transition: all 0.3s ease;
            white-space: nowrap;
            border-radius: 4px;
        }

        .nav-menu a:hover {
            color: #007bff;
            background: #f0f0f0;
        }

        .state-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding: 12px 0;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .state-tags a {
            background: #e9ecef;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            text-decoration: none;
            color: #444;
            transition: all 0.3s ease;
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            text-align: center;
        }

        .state-tags a:hover {
            background: #007bff;
            color: #fff;
        }

        /* Custom Tooltip Styles */
        .state-tags a::after {
            content: attr(data-tooltip);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(51, 51, 51, 0.9);
            color: #fff;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
            z-index: 1000;
            text-align: center;
            box-sizing: border-box;
        }

        .state-tags a:hover::after {
            opacity: 0.95;
            visibility: visible;
        }

        /* Mobile Sidebar Styles */
        .hamburger {
            display: none;
            font-size: 28px;
            background: none;
            border: none;
            cursor: pointer;
            color: #007bff;
            padding: 10px;
            z-index: 1001;
        }

        .sidebar {
            position: fixed;
            top: 0;
            left: -100%;
            width: 90%;
            max-width: 280px;
            height: 100%;
            background: #fff;
            transition: left 0.3s ease;
            z-index: 1000;
            overflow-y: auto;
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
        }

        .sidebar.active {
            left: 0;
        }

        .sidebar .nav-menu {
            flex-direction: column;
            gap: 0;
            padding: 20px 0;
        }

        .sidebar .nav-menu a,
        .sidebar .state-tags a {
            width: 100%;
            padding: 14px 20px;
            font-size: 1rem;
            border-bottom: 1px solid #eee;
            color: #007bff !important;
            text-align: left;
        }

        .sidebar .state-tags {
            flex-direction: column;
            gap: 0;
            padding: 0;
        }

        .sidebar-close {
            display: block;
            padding: 15px 20px;
            font-size: 1.2rem;
            color: #ff0000;
            text-align: right;
            cursor: pointer;
            border-bottom: 1px solid #eee;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            z-index: 999;
        }

        .overlay.active {
            display: block;
        }

        /* Highlight styles for special links */
        .highlight-yellow {
            color: #ffcc00 !important;
            font-weight: 600;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .hamburger {
                display: block;
                position: absolute;
                right: 10px;
                top: 50px;
                transform: translateY(-50%);
            }

            .nav-container,
            .state-tags-container {
                display: none;
            }

            .header-container {
                padding: 10px 15px;
                justify-content: space-between;
            }

            .logo-sectizn {
                justify-content: flex-start;
                gap: 10px;
            }

            .logo-sectizn img {
                height: 45px;
            }

            .logo-text h1 {
                font-size: 1.3rem;
            }

            .logo-text p {
                font-size: 0.75rem;
            }

            .job-button {
                padding: 5px 10px;
                font-size: 0.7rem;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .hamburger {
                display: none;
            }

            .nav-container,
            .state-tags-container {
                display: block;
            }

            .header-container {
                padding: 12px 20px;
            }

            .logo-sectizn {
                gap: 15px;
            }

            .logo-sectizn img {
                height: 55px;
            }

            .logo-text h1 {
                font-size: 1.5rem;
            }

            .logo-text p {
                font-size: 0.85rem;
            }

            .nav-menu {
                gap: 10px;
                justify-content: center;
            }

            .nav-menu a {
                font-size: 0.9rem;
                padding: 6px 10px;
            }

            .state-tags {
                gap: 6px;
                padding: 10px 0;
            }

            .state-tags a {
                font-size: 0.8rem;
                padding: 5px 10px;
            }
        }

        @media (min-width: 1025px) {
            .hamburger {
                display: none;
            }

            .sidebar {
                display: none;
            }

            .header-container {
                padding: 15px 20px;
            }

            .logo-sectizn img {
                height: 65px;
            }

            .logo-text h1 {
                font-size: 1.8rem;
            }

            .logo-text p {
                font-size: 0.95rem;
            }

            .nav-menu {
                gap: 15px;
            }

            .nav-menu a {
                font-size: 1rem;
                padding: 8px 14px;
            }

            .state-tags {
                gap: 10px;
                padding: 15px 0;
            }

            .state-tags a {
                font-size: 0.9rem;
                padding: 6px 12px;
            }
        }
   