body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f8f9fa;
  color: #333;
}
header {
  background: #0077b6;
  color: white;
  padding: 1.5rem;
  text-align: center;
}
header h1 {
  margin: 0;
}
nav {
  background: #023e8a;
  display: flex;
  justify-content: center;
}
nav a {
  color: white;
  padding: 1rem;
  text-decoration: none;
}
nav a:hover {
  background: #0077b6;
}
.container {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
}
.hero {
  background: url("images/hero.jpg") center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
.hero h2 {
  font-size: 2.5rem;
}
button, .btn {
  background: #0077b6;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
}
button:hover, .btn:hover {
  background: #023e8a;
}
.service-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  padding: 1rem;
}
.service-card img {
  width: 100%;
  border-radius: 10px;
}
footer {
  background: #023e8a;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
form {
  display: flex;
  flex-direction: column;
}
form input, form select {
  margin: 0.5rem 0;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
