body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0f2f5;
  color: #333;
}

nav {
  background-color: #e0e0e0;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  background: linear-gradient(rgba(30, 30, 30, 0.6), rgba(30, 30, 30, 0.6)), url('images/hero.jpg') center/cover no-repeat;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.button {
  background-color: #0077cc;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
}

.services {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px;
}

.service {
  background: white;
  padding: 20px;
  width: 300px;
  text-align: center;
  border-radius: 10px;
}

.service img {
  width: 100%;
  border-radius: 10px;
}

.contact {
  text-align: center;
  padding: 40px;
}
