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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #2d5016 0%, #3d6b1a 25%, #5d8c2f 50%, #7dad44 100%);
  min-height: 100vh;
  line-height: 1.7;
  color: #2d4a1b;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(125, 173, 68, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(93, 140, 47, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 70%, rgba(61, 107, 26, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

header {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.95) 0%, rgba(61, 107, 26, 0.9) 100%);
  backdrop-filter: blur(10px);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #7dad44;
}

header::before {
  content: '🌿';
  position: absolute;
  font-size: 8rem;
  opacity: 0.1;
  top: 20px;
  right: 50px;
  animation: sway 4s ease-in-out infinite;
}

@keyframes sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

header h1 {
  font-size: 4.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #f4f6f0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  font-family: 'Georgia', serif;
  letter-spacing: -1px;
}

header h2 {
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(244, 246, 240, 0.9);
  font-style: italic;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

#services {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f4f6f0 0%, #e8ede2 100%);
  margin: 40px auto;
  border-radius: 25px;
  max-width: 1200px;
  box-shadow: 0 20px 60px rgba(45, 80, 22, 0.15);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(125, 173, 68, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

#services::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(93, 140, 47, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

#services h2 {
  font-size: 3rem;
  margin-bottom: 50px;
  text-align: center;
  color: #2d4a1b;
  font-family: 'Georgia', serif;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

#services h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #7dad44, #5d8c2f);
  border-radius: 2px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8faf6 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
  border-left: 5px solid #7dad44;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(45, 80, 22, 0.2);
  border-left-color: #5d8c2f;
}

.service-card strong {
  color: #2d4a1b;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: 'Georgia', serif;
}

.service-card p {
  color: #4a6b32;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
}

.service-card li {
  margin: 12px 0;
  position: relative;
  padding-left: 25px;
  color: #4a6b32;
  font-size: 1.05rem;
}

.service-card li::before {
  content: "🌱";
  position: absolute;
  left: 0;
  font-size: 1rem;
}

#why-choose {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.95) 0%, rgba(61, 107, 26, 0.9) 100%);
  margin: 60px auto;
  border-radius: 25px;
  max-width: 1200px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  color: #f4f6f0;
  position: relative;
  overflow: hidden;
}

#why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 30%, rgba(125, 173, 68, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(93, 140, 47, 0.1) 0%, transparent 60%);
}

#why-choose h2 {
  font-size: 3rem;
  margin-bottom: 50px;
  text-align: center;
  color: #f4f6f0;
  font-family: 'Georgia', serif;
  font-weight: 300;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.why-item {
  background: rgba(244, 246, 240, 0.1);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 15px;
  border: 1px solid rgba(244, 246, 240, 0.2);
  transition: all 0.3s ease;
}

.why-item:hover {
  background: rgba(244, 246, 240, 0.15);
  transform: translateY(-3px);
  border-color: rgba(125, 173, 68, 0.4);
}

.why-item strong {
  color: #7dad44;
  font-size: 1.3rem;
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: 'Georgia', serif;
}

.why-item p {
  color: rgba(244, 246, 240, 0.9);
  line-height: 1.7;
  font-size: 1.05rem;
}

#contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, #7dad44 0%, #5d8c2f 100%);
  margin: 60px auto;
  border-radius: 25px;
  max-width: 1200px;
  box-shadow: 0 30px 80px rgba(125, 173, 68, 0.3);
  color: #f4f6f0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '📧';
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 4rem;
  opacity: 0.2;
}

#contact h2 {
  font-size: 3rem;
  margin-bottom: 40px;
  font-family: 'Georgia', serif;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

#contact p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
}

#contact a {
  color: #f4f6f0;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 15px;
  background: rgba(244, 246, 240, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

#contact a:hover {
  background: rgba(244, 246, 240, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#tid-bits-link {
  text-align: center;
  padding: 60px 20px;
  margin: 80px auto 40px;
  max-width: 800px;
}

#tid-bits-link a {
  color: #f4f6f0;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 25px 60px;
  background: linear-gradient(135deg, rgba(125, 173, 68, 0.9), rgba(93, 140, 47, 0.8));
  border-radius: 50px;
  border: 3px solid rgba(244, 246, 240, 0.3);
  transition: all 0.4s ease;
  display: inline-block;
  backdrop-filter: blur(10px);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 40px rgba(125, 173, 68, 0.2);
  font-family: 'Georgia', serif;
}

#tid-bits-link a:hover {
  background: linear-gradient(135deg, rgba(125, 173, 68, 1), rgba(93, 140, 47, 0.9));
  transform: translateY(-3px);
  box-shadow: 0 25px 60px rgba(125, 173, 68, 0.3);
  border-color: rgba(244, 246, 240, 0.5);
}

footer {
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.9), rgba(29, 51, 14, 0.95));
  color: rgba(244, 246, 240, 0.8);
  padding: 50px 20px;
  text-align: center;
  margin-top: 80px;
  border-top: 3px solid #7dad44;
}

footer p {
  font-size: 1rem;
  font-style: italic;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2.8rem;
  }
  
  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  #services,
  #why-choose,
  #contact {
    margin: 30px 15px;
    padding: 60px 25px;
  }
  
  #services h2,
  #why-choose h2,
  #contact h2 {
    font-size: 2.2rem;
  }
}