* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  background: #f4f6fa;
}

header {
  background: #0d2a44;
  color: white;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
}

nav a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
}

.hero {
  padding: 5rem 3rem;
  background: linear-gradient(to right, #0d2a44, #123f63);
  color: white;
}

.hero button {
  margin-right: 1rem;
  padding: 0.8rem 1.5rem;
  border: none;
  background: gold;
  font-weight: bold;
}

.hero .secondary {
  background: white;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 3rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
}

.quote {
  background: #123f63;
  color: white;
  padding: 3rem;
}

.quote form {
  max-width: 400px;
}

.quote input, .quote select, .quote textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
}

footer {
  background: #0d2a44;
  color: white;
  text-align: center;
  padding: 1.5rem;
}
