/* General Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #003366;
}

/* 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;
  }
}

/* Produk Section */
.produk-section {
  text-align: center;
  padding: 60px 20px;
  background-image: url('../img/background/Blue-abstract-wallpaper-widescreen-high-definition-pictures-download.jpg');
  background-size: cover;
}

.produk-section h2 {
  font-size: 2.5rem;
  color: whitesmoke;
  margin-bottom: 40px;
}

.produk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.produk-card {
  background: white;
  opacity: 0.9;
  border-radius: 10px;
  padding: 30px 20px;
  text-decoration: none;
  color: #003366;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, background 0.3s ease;
}

.produk-card i {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #0055cc;
}

.produk-card h3 {
  font-size: 1.1rem;
  margin-top: 5px;
}

.produk-card:hover {
  transform: translateY(-5px);
  background: #e6f0ff;
}

/* Footer */
.footer-bottom {
  text-align: center;
  padding: 20px;
  background: #003366;
  color: white;
  margin-top: 40px;
}



.produk-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1rem;
  color: #003399;
  line-height: 1.6;
  background-color: white;
  border-radius: 50px;
  opacity: 0.9;
}