/* Careers Page Background */
body {
    background-color: #f4f4f9; /* Light gray */
    color: #333; /* Dark text for readability */
}

/* Header Section (if any) */
header {
    background-color: #5b3e96; /* Dark purple */
    color: white;
    padding: 20px;
    text-align: center;
}

/* Job Cards Section */
.job-listings {
    padding: 20px;
}

.job-card {
    background-color: #ffffff; /* White card background */
    border: 1px solid #e0e0e0; /* Subtle border */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow */
    border-radius: 8px; /* Rounded corners */
    margin: 15px auto;
    max-width: 800px;
    padding: 20px;
}

/* Job Card Title */
.job-card h2 {
    color: #5b3e96; /* Highlighted text */
    margin-bottom: 10px;
}

/* Links */
.job-card a {
    color: #5b3e96; /* Matching link color */
    text-decoration: none;
    font-weight: bold;
}

.job-card a:hover {
    text-decoration: underline;
}
