body{
  font-family: Arial, sans-serif;
  margin: 0;
}

header{
  background: #222;
  color: white;
  padding: 20px;
  text-align: center;
}

nav a{
  color: white;
  margin: 10px;
  text-decoration: none;
}

#menu-btn{
  padding: 10px;
  background: steelblue;
  color: white;
  border: none;
  cursor: pointer;
}

#menu{
  display: none;
}

#menu.show{
  display: block;
}

.hero{
  background: url('images/hero.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.services, .services-preview{
  text-align: center;
  padding: 50px 20px;
}

.service-card{
  display: inline-block;
  width: 300px;
  margin: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.service-card img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3{
  margin: 15px 0 10px;
}

.service-card p{
  padding: 0 15px 15px;
  font-size: 16px;
}
.contact {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
  }
  
  #contactForm input,
  #contactForm textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
  }
  
  #contactForm button {
    padding: 10px 20px;
    background: steelblue;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
  }
  
  #contactForm button:hover {
    background: #0059b3;
  }