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

:root {
  --forest: #2d5016;
  --sage: #7c9070;
  --mint: #a4c3a2;
  --cream: #f7f3e9;
  --terracotta: #d4a574;
  --charcoal: #333333;
}

body {
  font-family: "Georgia", serif;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage) 100%);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--cream);
  font-size: 28px;
  font-weight: bold;
  letter-spacing: -1px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.8;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(164, 195, 162, 0.2) 0%,
    rgba(212, 165, 116, 0.1) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "🌿";
  position: absolute;
  font-size: 200px;
  opacity: 0.05;
  top: -50px;
  right: 10%;
  transform: rotate(-15deg);
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  color: var(--forest);
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.2;
}

.tagline {
  font-size: 24px;
  color: var(--sage);
  margin-bottom: 80px;
  font-style: italic;
}

.cta-button {
  display: inline-block;
  background: var(--forest);
  color: var(--cream);
  padding: 18px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
  background: #3a6420;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 42px;
  color: var(--forest);
  margin-bottom: 60px;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.service-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--cream);
  border-radius: 15px;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-title {
  font-size: 24px;
  color: var(--forest);
  margin-bottom: 15px;
}

.service-description {
  color: var(--charcoal);
  line-height: 1.6;
}

/* Why Choose Us */
.why-us {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(124, 144, 112, 0.1) 0%,
    rgba(164, 195, 162, 0.1) 100%
  );
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.why-icon {
  font-size: 32px;
  color: var(--forest);
  flex-shrink: 0;
}

.why-content h3 {
  font-size: 20px;
  color: var(--forest);
  margin-bottom: 10px;
}

.why-content p {
  color: var(--charcoal);
  line-height: 1.6;
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
  background: white;
}

.steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--mint);
  color: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step h3 {
  color: var(--forest);
  margin-bottom: 10px;
}

.step p {
  color: var(--charcoal);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--forest);
  color: var(--cream);
}

.contact .section-title {
  color: var(--cream);
}

.contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.contact-item a {
  color: var(--cream);
  text-decoration: none;
  transition: opacity 0.3s;
}

.contact-item a:hover {
  opacity: 0.8;
}

/* Footer */
footer {
  background: #1a3009;
  color: var(--cream);
  text-align: center;
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .tagline {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}
