body {
  background-color: #f6f8f1;
  color: #152414;
  overflow-x: hidden;
}

/* Nav */
.nav-pill {
  background-color: #1a1f16;
  border-radius: 9999px;
}
.nav-link {
  color: #a0a89d;
  transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: #c5e08b;
}

/* Scattered images */
.scatter-img {
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.scatter-img:hover {
  transform: scale(1.05);
}

/* Service cards */
.service-card {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #152414;
  transition: transform 0.3s;
  align-items: center;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-10px);
}
.service-img-wrapper {
  margin-top: auto;
  height: 180px;
  overflow: hidden;
  border-radius: 20px;
  margin: 10px;
}
.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Accordion */
.faq-item {
  border-radius: 16px;
  background-color: transparent;
  transition: all 0.3s;
  overflow: hidden;
}
.faq-item.active {
  background-color: #b0c679;
}
.faq-content {
  max-height: 0;
  opacity: 0;
  transition: all 0.3s;
}
.faq-item.active .faq-content {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 24px;
}

/* Diagram pointers */
.pointer-line {
  position: absolute;
  height: 1px;
  background-color: #152414;
  width: 100px;
}
.pointer-dot {
  width: 8px;
  height: 8px;
  background-color: #152414;
  border-radius: 50%;
  position: absolute;
}
.pointer-label {
  position: absolute;
  font-size: 14px;
  font-weight: 500;
  background: white;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Testimonial scroll */
.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 24px;
  scrollbar-width: none; /* Firefox */
}
.testimonial-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Webkit */
}
.testimonial-card {
  min-width: 320px;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.05);
}

.leaf-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}
