
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f6f8fa;
  color: #1a1a1a;
  line-height: 1.6;
}
.header {
  background-color: #002147;
  color: white;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 45px;
}
nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}
.hero {
  position: relative;
}
.hero-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 30%;
  left: 10%;
  background-color: rgba(0, 33, 71, 0.75);
  color: white;
  padding: 2rem;
  border-radius: 8px;
}
section {
  padding: 3rem 1.5rem;
  max-width: 800px;
  margin: auto;
}
.pitch ul {
  list-style: none;
  padding-left: 0;
}
form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
button {
  margin-top: 15px;
  padding: 12px 25px;
  background-color: #002147;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
footer {
  background-color: #002147;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .hero-overlay {
    top: 20%;
    left: 5%;
    padding: 1rem;
  }
  .hero-image {
    height: 300px;
  }
}
