body {
    margin: 0;
    padding: 0;
  }
  .hero-section {
    position: relative;
    background-image: url('img/bg.jpg'); /* Ganti dengan URL gambar background yang kamu inginkan */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Warna overlay dengan transparansi */
  }
  .hero-content {
    position: relative;
    z-index: 1;
  }
  .hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .hero-content a {
    background-color: #1E40AF; /* Ganti warna latar belakang tombol dengan warna yang diinginkan */
  }
  .hero-content a:hover {
    background-color: #1E40AF; /* Ganti warna latar belakang tombol hover dengan warna yang diinginkan */
  }