        body {
            font-family: 'Helvetica Neue', 'Arial', sans-serif;
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }
        header {
            background: linear-gradient(90deg, #004d99, #0066cc);
            color: white;
            padding: 20px 0;
            text-align: center;
        }
        header h1 {
            margin: 0;
            font-size: 2rem;
        }
        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        .job-listing {
            background-color: #fff;
            border-radius: 8px;
            padding: 20px 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            margin-bottom: 20px;
            transition: box-shadow 0.3s ease;
        }
        .job-listing:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .job-title {
            font-size: 1.4rem;
            font-weight: bold;
            color: #004d99;
            margin-bottom: 10px;
        }
        .job-meta {
            font-size: 0.95rem;
            color: #777;
            margin-bottom: 10px;
        }
        .job-desc {
            font-size: 1rem;
            color: #555;
            margin-bottom: 15px;
        }
        .apply-btn {
            display: inline-block;
            background-color: #004d99;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        .apply-btn:hover {
            background-color: #003366;
        }
        footer {
            background-color: #f1f1f1;
            color: #777;
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .job-title {
                font-size: 1.2rem;
            }
            .apply-btn {
                width: 100%;
                text-align: center;
            }
        }