* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
  background: #ffffff;
  color: #333;
  line-height: 1.6;
}
.hero {
  background: url('../assets/hero.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-text {
  text-align: center;
  color: white;
  background-color: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 10px;
}
section {
  padding: 4rem 2rem;
  text-align: center;
}
.services ul {
  list-style: none;
  padding: 0;
}
.services li {
  margin: 1rem 0;
}
.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.contact input, .contact textarea {
  margin-bottom: 1rem;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact button {
  padding: 0.8rem;
  background: #0077cc;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
footer {
  text-align: center;
  padding: 2rem;
  background: #f4f4f4;
  font-size: 0.9rem;
}
