
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #ffffff;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}
.navbar {
  background: #003366;
  color: white;
  padding: 10px 0;
}
.navbar .brand img {
  height: 50px;
}
.nav-links {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
.nav-links li {
  margin-left: 20px;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.nav-links a.active,
.nav-links a:hover {
  text-decoration: underline;
}
.hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.1rem;
}
ul {
  padding-left: 20px;
}
.cta-buttons {
  margin-top: 20px;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: #0055a5;
  color: white;
  text-decoration: none;
  margin-right: 10px;
  border-radius: 4px;
}
.btn-primary:hover, .btn-secondary:hover {
  background: #0077cc;
}
footer.footer {
  margin-top: auto;
  background: #f1f1f1;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}
.contact-form .form-group {
  margin-bottom: 15px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
