.hero-wrapper {
  background: #a7cbea;
  padding: 40px 15px;
}

.hero-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 30px;
}

.hero-image img {
  width: 280px;
  border-radius: 8px;
}

.hero-content {
  flex: 1;
}

.badge {
  background: #ff5722;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.btn {
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

.btn-login {
  background: #8fae6a;
  color: #fff;
}

.btn-daftar {
  background: #6c8b5c;
  color: #fff;
}

.rating {
  font-size: 14px;
  color: #333;
}


.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #8fae6a;
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  z-index: 999;
}

.mobile-bar a {
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}

