* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  color: #333;
  background: #f8f9fa;
}

header {
  background: #2c5530;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

header h1 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

header p {
  font-size: 1rem;
  opacity: 0.9;
}

main {
  padding: 1rem;
  max-width: 100%;
}

.hero {
  background: white;
  padding: 2rem 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c5530;
}

.cta-button {
  display: inline-block;
  background: #4CAF50;
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.cta-button:active {
  transform: scale(0.95);
}

section {
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c5530;
}

.service-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #2c5530;
}

.service-card p {
  color: #666;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.25rem;
  font-weight: bold;
  color: #4CAF50;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, select, textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
}

button {
  background: #2c5530;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

button:active {
  background: #1e3e21;
}

.contact-info {
  margin-top: 1.5rem;
  text-align: center;
}

.contact-info p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

footer {
  background: #2c5530;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

@media (max-width: 480px) {
  header {
    padding: 1.5rem 1rem;
  }
  
  header h1 {
    font-size: 1.5rem;
  }
  
  .hero {
    padding: 1.5rem 1rem;
  }
  
  .hero h2 {
    font-size: 1.25rem;
  }
  
  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
