body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.hero {
  height: 100vh;
  background: linear-gradient(to right, #1f1c2c, #928dab);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.scroll-down {
  margin-top: 20px;
  display: inline-block;
  color: white;
  text-decoration: none;
  border: 1px solid white;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background 0.3s;
}

.scroll-down:hover {
  background: white;
  color: #1f1c2c;
}

.section {
  padding: 80px 20px;
  text-align: center;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service-item {
  background: #f3f3f3;
  padding: 20px;
  flex: 1 1 200px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

input, textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  padding: 10px;
  font-size: 16px;
  background-color: #1f1c2c;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

button:hover {
  background-color: #444;
}

footer {
  text-align: center;
  padding: 40px 20px;
  background-color: #1f1c2c;
  color: white;
}
