
body {
  margin: 0;
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}
header {
  background-color: #1c2e4a;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
header .logo img {
  height: 50px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}
main {
  padding: 2rem;
  max-width: 960px;
  margin: auto;
}
footer {
  background-color: #1c2e4a;
  color: white;
  padding: 1rem;
  text-align: center;
}
.footer-links a {
  margin: 0 1rem;
  color: white;
  text-decoration: none;
}
input, textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5rem;
}
button {
  padding: 0.5rem 1rem;
  background-color: #1c2e4a;
  color: white;
  border: none;
  cursor: pointer;
}
.logo-img {
  height: 120px;           /* adjust up if needed */
  max-height: 150px;      /* limit if header grows */
  width: auto;
  display: block;
  padding: 2px 0;         /* some breathing room top and bottom */
}