body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #111;
  line-height: 1.6;
}
.hero {
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}
.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.5rem;
  max-width: 700px;
}
.button {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: #1a202c;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.2rem;
}
.services {
  background: #f9f9f9;
  padding: 5rem 2rem;
  text-align: center;
}
.services h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.card {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 300px;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
.about {
  padding: 5rem 2rem;
  background: white;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-content img {
  max-width: 100%;
  border-radius: 10px;
}
.contact {
  background: #f0f0f0;
  padding: 5rem 2rem;
  text-align: center;
}
.contact form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 10px;
}
.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-row input {
  flex: 1;
  padding: 1rem;
}
textarea {
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
}
button {
  margin-top: 1rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  background: #111;
  color: white;
  border: none;
  border-radius: 30px;
}
footer {
  text-align: center;
  padding: 2rem;
  background: #111;
  color: white;
}