
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: 
#f7f7f7;
  color: #333;
}
.testimonials-main {
  padding: 40px 0;
}
.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.section-header {
  text-align: center;
  margin-bottom: 20px;
}
.section-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: 
#144d29;
}
.section-header p {
  font-size: 16px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.service-card {
  background: 
#ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 20px;
  transition: transform 0.2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card h3 {
  font-size: 18px;
  color: 
#144d29;
  margin-bottom: 10px;
}
.service-card .stats {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
.cta-section {
  background-color: 
#144d29;
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin-top: 40px;
  border-radius: 8px;
}
.cta-section h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: white;
}
.cta-section p {
  font-size: 15px;
  margin-bottom: 25px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.cta-buttons .btn-primary {
  background: 
#b7f2ce;
  color: 
#144d29;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.cta-buttons .btn-primary:hover {
  background: 
#9ee5b7;
}
/ Scroll reveal animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-card {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }
.service-card:nth-child(9) { animation-delay: 0.9s; }
.service-card:nth-child(10) { animation-delay: 1s; }
.service-card:nth-child(11) { animation-delay: 1.1s; }
.service-card:nth-child(12) { animation-delay: 1.2s; }
.service-card:nth-child(13) { animation-delay: 1.3s; }
.service-card:nth-child(14) { animation-delay: 1.4s; }
.service-card:nth-child(15) { animation-delay: 1.5s; }
@media (max-width: 600px) {
  .section-header h2 {
    font-size: 22px;
  }
  .cta-section h3 {
    font-size: 20px;
  }
}