.hiring-section {
  background-color: #083b4c;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  width: 100vw; /* full width viewport */
  padding: 80px 0;
  margin: 0;
  color: #fff;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hiring-container {
  background-color: #ffffff;
  color: #083b4c;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  max-width: 650px;
  width: 90%;
  padding: 40px 50px;
  text-align: left;
}

.hiring-container h1 {
  color: #083b4c;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.hiring-container p {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.hiring-form input,
.hiring-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  color: #333;
}

.hiring-form button {
  display: block;
  width: 100%;
  background-color: #083b4c;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hiring-form button:hover {
  background-color: #12426b;
}

header.main-header {
  margin-bottom: 0;     /* remove any extra spacing below */
  padding-bottom: 0; /* reduce padding inside the header */
  height: auto;         /* remove the fixed 200px height */
}
