.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-container {
  display: flex;
  align-items: left;
}

.logo {
  height: 150px;  /* Adjust logo size */
  width: auto;
}

.nav-links a {
  margin-right: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.contact-form {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccd;
  border-radius: 8px;
  font-size: 16px;
}

.btn-submit {
  background: #0b3d91;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
}

.btn-submit:hover {
  background: #daa520;
}
