* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

header.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('https://picsum.photos/1600/800') no-repeat center center/cover;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero-content {
  text-align: center;
  margin-top: auto;
}

.hero-content h2 {
  font-size: 3rem;
  animation: fadeIn 1s ease-in;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 15px 0;
}

.btn {
  background: #00bfa6;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.btn:hover {
  background: #009e8a;
}

.section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  animation: fadeIn 1s ease-in;
}

.services-list {
  list-style: none;
  display: flex;
  justify-content: space-around;
  padding: 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: auto;
}

input, textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  background: #00bfa6;
  color: white;
  border: none;
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .services-list {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }
}
