body {
  font-family: Arial, sans-serif;
  background-color: #f0f8ff; /* light blue background */
  color: #002244; /* dark navy text */
  margin: 0;
  padding: 0;
}

header, footer {
  background-color: #005f99;
  color: #fff;
  padding: 15px;
  text-align: center;
}

nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  padding: 20px;
}

.job.card {
  background: #ffffff;
  border: 1px solid #cce7ff;
  border-radius: 8px;
  padding: 16px;
}

.apply-btn {
  background: #007acc;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}
.apply-btn:hover {
  background: #005f99;
}

.apply-form {
  background: #fff;
  border: 1px solid #cce7ff;
  border-radius: 8px;
  padding: 20px;
  margin: 20px;
}

.apply-form input, .apply-form select, .apply-form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  margin-bottom: 12px;
  border: 1px solid #b3d9ff;
  border-radius: 6px;
}

button {
  cursor: pointer;
}

button#apply-submit {
  background: #007acc;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
}

button#apply-submit:hover {
  background: #005f99;
}
