body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

header {
  background: #f7f8fa;
  padding: 10px 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #2c3e50;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #2c3e50;
}

.btn-primary {
  background: #ff6b6b;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background: #f0f2f5;
}

.hero-text {
  max-width: 100%;
}

.hero-text h1 {
  font-size: 2.5em;
  color: #333;
}

.hero-text p {
  margin: 15px 0;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
}

.features {
  padding: 50px;
  text-align: center;
}

.feature-list {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.feature-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 250px;
}

.about {
  padding: 50px;
  background: #ffefef;
}

.contact {
  padding: 30px;
  background: #f7f8fa;
  text-align: center;
}

footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 15px;
}

/* --- Tombol burger default hidden di desktop --- */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}
@media only screen and (min-width: 320px) and (max-width:650px) {
  .progress-step::after {
    font-size: 12px;
  }
  .form {
    width: clamp(400px, 30%, 430px);
  }
  .hero{
    display: flex; /* Mengaktifkan flexbox */
  flex-direction: column; /* Menumpuk elemen secara vertikal */
  align-items: center; 
  border: 1px solid black; 
	}
  .hero-text
  {
    text-align: center;
    padding: 15px;
  }
  .navbar{
    justify-content: space-around;
  }
  .about{
    text-align: center;
  }
 .menu-toggle {
    display: block;
    color: black;
  background: transparent;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease-in-out;
  }

  .nav-links a {
    color: #333;
    padding: 8px 0;
  }

  .nav-links a:hover {
    color: #2575fc;
  }

  .nav-links.show {
    display: flex;
  }
}

/* Animasi muncul */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}