body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  color: white;
  background-image: url('../img/background/dep.jpg');
  background-size: cover;
}

/* Header */
.main-header {
  background-color: #ffffff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #003366;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #0077cc;
}

.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    flex-direction: column;
    background: #fff;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
    color: #003366;
  }
}


.deposito-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 20px;
  background: linear-gradient(to right, #002244, #0055aa);
  opacity: 0.9;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.deposito-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: whitesmoke;
}

.deposito-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.highlight {
  font-weight: bold;
  color: yellow;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.benefits-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: whitesmoke;
}

.cta-button {
  display: inline-block;
  margin-top: 30px;
  background: #003399;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #0055cc;
}

@media (max-width: 768px) {
  .deposito-section h1 {
    font-size: 2rem;
  }

  .deposito-section {
    margin: 30px 15px;
    padding: 30px 20px;
  }
}


.simulasi-form {
  background: #f0f4f8;
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
}

.simulasi-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.simulasi-form input,
.simulasi-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}


.hitung-button {
  background-color: #003399;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.hitung-button:hover {
  background-color: #0055cc;
}

.hasil-simulasi {
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #005500;
}

.reset-button {
  background-color: yellow;
  color: black;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  margin-left: 10px;
}

.reset-button:hover {
  background-color: #777;
}

.exit-button {
  background-color: red;
  color: white;
  padding: 10px 20px;
  text-decoration: double;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.exit-button:hover {
  background-color: #777;
}

/* footer */
.main-footer {
  background: linear-gradient(to right, #002244, #0055aa);
  color: #fff;
  padding: 5px 0;
  font-size: 14px;
  text-align: center;
}