/* Global */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #333;
}

.navbar {
  border-bottom: none !important;
  box-shadow: none !important;
}

.logo{
    min-width: 50px;
    max-width: 100px
}


.nav-link {
  font-weight: 500;
  margin-left: 15px;
}

.nav-link.active {
  color: #1a7d55 !important; /* hijau lembut */
  font-weight: bold;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #1a7d55;
}

/* Process step */
.process-step {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #1a7d55;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Card hover effect */
.card {
  border-radius: 12px;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}

/* Footer (optional) */
footer {
  background: #1a7d55;
  color: white;
  text-align: center;
  padding: 15px;
}
