/* === NAVBAR & HEADER === */
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  font-size: 16px;
  font-weight: 500;
  padding: 0 40px;
}

.nav a {
  color: #666;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav a.active,
.nav a:hover {
  color: #2e7d32;
}

.hamburger-menu {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0;
  }
  .nav a {
    padding: 10px 20px;
  }
  .nav.links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px 0;
    z-index: 100;
  }
  .nav.links.active {
    display: flex;
  }
  .hamburger-menu {
    display: block;
  }
}

/* Header */
header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
}

.header-title {
  font-size: 24px;
  font-weight: bold;
  color: #1e3a8a;
}

/* Button umum */
.btn {
  background-color: #2e7d32;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
  margin-top: 24px;
}

.btn:hover {
  background-color: #27682a;
}

.btn-contact {
  color: #000 !important;
}