body {
  background-color: #FFD700; /* Emas */
  color: white;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner {
  background-color: #f0f8ff;
  color: black;
  text-align: center;
  padding: 10px;
  width: 100%;
}

.banner a {
  color: red;
  font-weight: bold;
  margin-left: 5px;
}

.header {
  text-align: center;
  margin-top: 40px;
}

.logo {
  height: 70px;
}

.title {
  color: orange;
  font-size: 2.5rem;
  margin-top: 10px;
}

.search-container {
  margin-top: 30px;
  width: 100%;
  max-width: 500px;
  padding: 0 20px;
}

.search-box {
  background: white;
  display: flex;
  align-items: center;
  border-radius: 9999px;
  padding: 10px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.search-box input {
  border: none;
  outline: none;
  flex-grow: 1;
  font-size: 1rem;
}

.icon {
  width: 20px;
  height: 20px;
  color: gray;
  margin-right: 10px;
}

.button-container {
  margin-top: 25px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.button-container button {
  background: linear-gradient(to right, #FF7E5F, #FD3A69);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: opacity 0.3s ease;
}

.button-container button:hover {
  opacity: 0.9;
}

footer {
  margin-top: 50px;
  font-size: 0.9rem;
  color: white;
}