/* Hero Section */
.hero {
  padding: 4rem 2rem;
  background: #f8f9ff;
  text-align: center;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #39644e;
}

/* Hubungi & Sosial */
.hubungi-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
}
.btn {
  background: linear-gradient(90deg, #1a3d2c 0%, #39644e 100%);
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(13, 42, 92, 0.4);
}
.btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #1a3d2c 0%, #39644e 100%);
}
.socials {
  display: flex;
  gap: 20px;
}
.socials a {
  color: #39644e;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}
.socials a:hover {
  color: #1a478a;
}

/* Counting */
.counting-container {
  background: linear-gradient(90deg, #1a3d2c 0%, #39644e 100%);
  color: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  margin: 40px auto 10px auto; /* ubah margin bawah jadi 10px */
  box-shadow: 0 15px 40px rgba(13, 42, 92, 0.4);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
  max-width: 800px;
}
.count-item h3 {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
}
.count-item p {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 500;
  opacity: 0.95;
}

/* Kurangi jarak atas pada section berikutnya */
.strategies-section {
  background-color: #e6f0ea;
  padding: 2rem;
  text-align: center;
  margin-top: 0; /* hilangkan jarak atas */
}

/* Jika masih terlalu jauh, tambahkan ini untuk mengurangi padding section */
.strategies-section {
  padding-top: 1.5rem;
}
.strategies-section h5 { letter-spacing: 2px; color: gray; }
.strategies-section h2 { font-size: 2rem; margin: 1rem 0 2rem; }
.strategies-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.card { background: white; padding: 1.5rem; border-radius: 10px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06); text-align: center; }
.partners-section { padding: 4rem 2rem; text-align: center; background-color: #fff; }
.partners-section h5 { letter-spacing: 2px; color: gray; }
.partners-section h2 { font-size: 2rem; margin: 1rem 0 2rem; }
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem; /* jarak antar logo */
  flex-wrap: wrap;
}

.partner-logos img {
  max-height: 140px; /* ubah tinggi maksimal */
  width: auto;
  transition: transform 0.3s ease;
}

.partner-logos img:hover {
  transform: scale(1.1); /* efek zoom pas hover */
}

.testimonial-section { padding: 4rem 2rem; background-color: #f1f7f4; text-align: center; }
.testimonial-section h5 { letter-spacing: 2px; color: gray; }
.testimonial-section h2 { font-size: 2rem; margin: 1rem 0 2rem; }
.testimonial-cards { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; }
.testimonial-card { background: #e6f0ea; padding: 2rem 1.5rem; border-radius: 10px; max-width: 260px; min-height: 300px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); }
.btn-view { margin-top: 2rem; padding: 0.6rem 1.5rem; border: none; background-color: #ccc; color: #222; border-radius: 20px; cursor: pointer; }
.faq-section { padding: 4rem 2rem; text-align: center; }
.faq-section h5 { letter-spacing: 2px; color: gray; }
.faq-section h2 { font-size: 2rem; margin-bottom: 2rem; }
.faq-list { max-width: 1000px; margin: 0 auto; }
.faq-item { background: #f5f5f5; padding: 1rem; border-radius: 8px; text-align: left; }