
        /* All CSS goes here */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #0b224c;
            --secondary-color: #e44d3a;
            --bg-light: #f4f7f6;
            --text-color: #333;
            --text-light: #666;
            --border-color: #ddd;
            --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        body {
            font-family: var(--font-stack);
            line-height: 1.6;
            color: var(--text-color);
            background-color: #fff;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* General Typography and Buttons */
        h1, h2, h3 {
            margin-bottom: 1rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            color: #fff;
        }
        h2 {
            font-size: 2rem;
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 2rem;
        }
        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--secondary-color);
        }
        .btn {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer;
        }
        .btn-primary {
            background-color: var(--primary-color);
            color: #fff;
        }
        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
        }
        .btn-search {
            background-color: var(--secondary-color);
            color: #fff;
            border: 2px solid var(--secondary-color);
            font-size: 1rem;
            padding: 14px 25px;
        }
        .btn-details {
            padding: 8px 15px;
            background-color: #e4eaf0;
            color: var(--primary-color);
            font-size: 0.9rem;
            font-weight: 500;
            text-align: center;
            margin-top: auto;
        }

        /* Header */
        .main-header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
        }
        .logo-image {
            height: 50px;
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            list-style: none;
            display: flex;
            margin-right: 20px;
        }
        .nav-links li {
            margin-left: 20px;
        }
        .nav-links a {
            font-weight: 500;
            padding: 5px;
            position: relative;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 100%;
            height: 2px;
            background-color: var(--secondary-color);
        }
        .nav-toggle {
            display: none;
        }

        /* Page specific styles */
        .page-title-section {
            background-color: var(--primary-color);
            padding: 50px 0;
            color: #fff;
            text-align: center;
        }
        .page-title-section h1 {
            font-size: 2.5rem;
            margin-bottom: 0;
        }
        .job-listings-section {
            padding: 50px 0;
            background-color: var(--bg-light);
        }
        .search-box {
            background: rgba(255, 255, 255, 0.9);
            padding: 20px;
            border-radius: 8px;
            max-width: 800px;
            margin: 20px auto 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .form-group {
            display: flex;
            gap: 10px;
        }
        .form-group input {
            flex: 1;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        .search-results-info {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 30px;
        }
        .job-filter-sidebar {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        .job-filter-sidebar h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 5px;
        }
        .filter-group {
            margin-bottom: 20px;
        }
        .filter-group label {
            display: block;
            margin-bottom: 10px;
        }
        .main-content-grid {
            display: grid;
            grid-template-columns: 1fr 3fr;
            gap: 30px;
        }

        /* Job Card */
        .job-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        .job-card {
            background-color: #fff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            border-left: 5px solid var(--primary-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .job-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        .job-title {
            font-size: 1.2rem;
            margin-bottom: 0;
        }
        .job-badge {
            font-size: 0.8rem;
            padding: 4px 10px;
            border-radius: 50px;
            color: #fff;
        }
        .new-badge {
            background-color: #4caf50;
        }
        .featured-badge {
            background-color: var(--secondary-color);
        }
        .job-company, .job-location {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }
        .job-details {
            margin-top: 1rem;
            margin-bottom: 1rem;
        }
        .job-details p {
            margin-bottom: 5px;
        }

        /* Footer */
        .main-footer {
            background-color: var(--primary-color);
            color: #fff;
            padding: 60px 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-logo {
            height: 60px;
            margin-bottom: 15px;
            filter: brightness(0) invert(1);
        }
        .footer-about p {
            color: #c9d0d9;
            margin-bottom: 15px;
        }
        .social-links a {
            color: #fff;
            font-size: 1.2rem;
            margin-right: 15px;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links h4, .footer-contact h4 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .footer-links a, .footer-contact p {
            color: #c9d0d9;
            transition: color 0.3s ease;
        }
        .footer-bottom {
            border-top: 1px solid #1a325d;
            padding-top: 20px;
            text-align: center;
            color: #c9d0d9;
        }

        /* Mobile responsive */
        @media (max-width: 900px) {
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                flex-direction: column;
                width: 100%;
                text-align: center;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                margin-top: 10px;
            }
            .main-nav.active {
                max-height: 300px;
            }
            .nav-links {
                flex-direction: column;
                margin-right: 0;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .auth-buttons {
                margin-top: 15px;
            }
            .nav-toggle {
                display: block;
            }
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .form-group {
                flex-direction: column;
            }
            .form-group input, .btn-search {
                width: 100%;
            }
            .main-content-grid {
                grid-template-columns: 1fr;
            }
        }
  