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

body {
  line-height: 1.6;
  color: #333;
}

h1, h2, h3 {
  color: #004d26;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Hero */
.hero {
  background: #ffcc66;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}
.hero img {
  max-width: 500px;
  border-radius: 20px;
  margin-top: 20px;
}
.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.btn {
  background: #ff6600;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}
.btn:hover {
  background: #e65c00;
}

/* Services */
.services {
  padding: 50px 20px;
  background: #f9f9f9;
}
.services h2 {
  text-align: center;
  margin-bottom: 30px;
}
.service-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 300px;
  text-align: center;
}
.card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}
.card h3 {
  margin-bottom: 10px;
}

/* Pricing */
.pricing {
  padding: 50px 20px;
}
.pricing h2 {
  text-align: center;
  margin-bottom: 30px;
}
.pricing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.price-card {
  background: #e6ffe6;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 250px;
}
.price {
  font-size: 1.5rem;
  color: #008000;
  margin: 10px 0;
}

/* Contact */
.contact {
  background: #004d26;
  color: white;
  text-align: center;
  padding: 30px 20px;
}
.contact a {
  color: #ffcc66;
}
