body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: #1d1d1d;
}

a {
  text-decoration: none;
  color: #002F6C;
}

header.navbar {
  background-color: #004080;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  align-items: center;
}

header.navbar nav a {
  margin-left: 20px;
  color: white;
  font-weight: 600;
}

.hero {
  background: url('images/hero.jpg') center/cover no-repeat;
  color: white;
  padding: 120px 40px;
  text-align: left;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-text button {
  background-color: #003366;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.services {
  padding: 60px 40px;
  background-color: #f8f8f8;
}

.services h2 {
  text-align: center;
  margin-bottom: 40px;
}

.service-cards {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 250px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.about-quote {
  display: flex;
  padding: 60px 40px;
  gap: 40px;
  flex-wrap: wrap;
  background-color: white;
}

.about, .quote-form {
  flex: 1 1 300px;
}

.about ul {
  list-style-type: none;
  padding-left: 0;
}

.about ul li {
  margin-bottom: 10px;
  font-weight: 600;
}

form input, form select, form button {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 16px;
}

form button {
  background-color: #003366;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background-color: #004080;
  color: white;
  text-align: center;
  padding: 20px;
}