body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333;
  background-color: #f5f5f5;
  margin: 0;
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.top-bar {
  background-color: #ffffff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  justify-content: space-between;
  position: relative;
}
.top-bar .logo {
  height: 50px;
}
.top-buttons {
  display: flex;
  gap: 10px;
}
.top-bar .help-button {
  background-color: #ffffff;
  color: #575e67;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 10px;
  text-decoration: none;
  border: none;
}
.top-bar .help-button:hover {
  background-color: #f5f5f5;
}
#menu-toggle {
  display: none;
}
.menu-icon {
  display: none;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 20px;
}
.menu-icon span {
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #003087;
  transition: all 0.3s ease;
}
.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-icon span:nth-child(3) { bottom: 0; }
#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  width: 200px;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.mobile-nav a {
  padding: 8px 20px;
  text-align: left;
  color: #575e67;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
.mobile-nav a:hover {
  background-color: #e5e5e5;
}
.blue-banner {
  background-color: #3E679F;
  color: white;
  padding: 20px;
  text-align: center;
}
.welcome-message h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  line-height: 1.5;
}
.dps-search-box {
  display: flex;
  justify-content: center;
  padding: 30px 20px;
  background-color: #f5f5f5;
  margin: 0 0 0px 0;
}
.search-overlay {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border: 3px solid #3E679F;  /* ← DPS BLUE */
  border-radius: 8px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.search-overlay h2 {
  margin: 0 0 20px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #003087;
}
.form-group {
  margin-bottom: 16px;
  text-align: left;
}
.form-group label {
  display: block;
  font-weight: bold;
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border 0.3s;
}
.form-group input:focus {
  outline: none;
  border-color: #003087;
  box-shadow: 0 0 0 2px rgba(0, 51, 135, 0.2);
}
.field-msg {
  display: block;
  font-size: 13px;
  margin-top: 4px;
  min-height: 1.2em;
}
.field-msg--error { color: #c0392b; }
.field-msg--info  { color: #555; }
.field-msg--ok    { color: #2e7d32; }
.employer-notice {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 15px;
  margin: 20px 0;
  font-size: 14px;
  color: #856404;
}
.search-overlay button {
  background-color: #D32F2F;
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}
.search-overlay button:hover {
  background-color: #b71c1c;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-top: 0;
}
.section {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
footer {
  background-color: #3E679F;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 12px;
}
@media (max-width: 768px) {
  .welcome-message h1 { font-size: 24px; }
  .blue-banner { padding: 15px; }
  .dps-search-box { padding: 20px 15px; margin: 0 0 20px 0; }
  .search-overlay { padding: 20px; max-width: 90%; }
  .search-overlay h2 { font-size: 20px; }
  .form-group input, .search-overlay button { font-size: 15px; padding: 10px; }
  .top-bar { padding: 5px 10px; }
  .top-bar .logo { height: 40px; }
  .top-buttons { display: none; }
  .menu-icon { display: block; }
  #menu-toggle:checked ~ .mobile-nav { display: flex; }
}
