body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f7fa;
  color: #333;
}

header {
  background-color: #004080;
  color: white;
  padding: 20px 40px;
  text-align: center;
}

nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  background-color: #003366;
  padding: 10px 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 40px;
  max-width: 1000px;
  margin: auto;
}

.section-title {
  font-size: 2em;
  margin-bottom: 20px;
}

.quote-form input, .quote-form select, .quote-form button {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 1em;
}

.cta {
  background-color: #e6f2ff;
  border: 1px solid #b3d1ff;
  padding: 20px;
  border-radius: 10px;
}

footer {
  background-color: #002244;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}