* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", sans-serif;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}
.navbar {
  background: white;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #0056b3;
}
.btn {
  background: #0056b3;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
}
.btn.primary {
  background: #0d6efd;
}
.hero {
  background: #0056b3;
  color: white;
  padding: 60px 0;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero-text span {
  color: #ffdd57;
}
.fitur-section {
  padding: 60px 0;
  background: white;
}
.fitur-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.fitur-box {
  background: #f1f3f5;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s;
}
.fitur-box:hover {
  background: #e2e6ea;
}
.fitur-box img {
  height: 40px;
  margin-bottom: 10px;
}
.pengumuman-section {
  padding: 60px 0;
}
.pengumuman-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.pengumuman-card {
  background: white;
  padding: 20px;
  border-left: 4px solid #0d6efd;
  border-radius: 6px;
}
footer {
  background: #1b1f24;
  color: white;
  padding: 40px 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
footer h4 {
  margin-bottom: 10px;
  color: #ffdd57;
}
footer a {
  color: #ddd;
}
/* RESPONSIVE DESIGN */

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
  }

  .navbar ul li {
    width: 100%;
    text-align: left;
  }

  .fitur-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .pengumuman-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 576px) {
  .hero-text h2 {
    font-size: 1.5rem;
  }

  .fitur-box img {
    height: 30px;
  }

  .fitur-box {
    padding: 15px;
  }

  .container {
    padding: 15px;
  }

  .btn {
    padding: 6px 12px;
    font-size: 14px;
  }

  footer {
    padding: 30px 15px;
  }

  .footer-grid {
    gap: 20px;
  }
}
