body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  color: #333;
}

.header {
  background: #fff;
  padding: 15px;
  text-align: center;
  font-weight: bold;
}

.hero {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  background: rgba(0,120,200,0.6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.services, .locations, .contact {
  padding: 50px 20px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap: 15px;
  max-width: 900px;
  margin: auto;
}

.service-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.contact form {
  max-width: 500px;
  margin: auto;
}

.contact input, select, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
}

.contact button {
  background: #0077cc;
  color: #fff;
  padding: 12px;
  border: none;
  width: 100%;
}

footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 15px;
}
