* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.hero {
  position: relative;
  height: 400px;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  margin: 100px auto;
  max-width: 600px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 20px;
  margin: 10px 0;
}

.btn {
  background: #006400;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
}

.btn:hover {
  background: #004d00;
}

.section {
  padding: 40px 20px;
  text-align: center;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

form {
  max-width: 500px;
  margin: 0 auto;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
  height: 120px;
}

button {
  background: #006400;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #004d00;
}

#pricing ul {
  list-style: none;
  margin: 20px 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

#pricing li {
  font-size: 16px;
  margin: 10px 0;
}

#contact p {
  font-size: 16px;
  margin: 10px 0;
}

@media (max-width: 768px) {
  .hero { height: 300px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 16px; }
  .hero-content { margin: 50px auto; }
  .section h2 { font-size: 24px; }
}