/* style.css */

/* --- General & Typography --- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f8f8;
}

header {
    background-color: #004d99; /* Deep Blue - Professional */
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.container {
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    font-size: 2.2em;
    margin: 0;
    font-weight: 600;
}

h2 {
    color: #004d99;
    border-bottom: 2px solid #ffcc00; /* Gold Accent */
    padding-bottom: 5px;
    margin-top: 30px;
}

p {
    line-height: 1.6;
}

/* --- Navigation --- */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #ffcc00; /* Gold Highlight on hover */
    color: #004d99;
    border-radius: 4px;
}

/* --- Main Content Sections --- */
.hero {
    background: url('recruiting_bg.jpg') no-repeat center center/cover; /* Placeholder for a background image */
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.services-grid, .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
    padding-bottom: 40px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button {
    display: inline-block;
    background-color: #ffcc00;
    color: #004d99;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.button:hover {
    background-color: #e6b800;
}

/* --- Footer --- */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9em;
}

footer p {
    margin: 5px 0;
}

/* --- Candidate Page Specific --- */
.job-seeker-cta {
    background-color: #e6f2ff; /* Light blue background */
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}
