    body {
      font-family: 'Saira Extra Condensed', sans-serif;
      padding-left: 17rem;
      background-color: #f4f4f4;
    }
    .side-nav {
      height: 100vh;
      background-color: #089b31;
      color: white;
      position: fixed;
      width: 17rem;
      top: 0;
      left: 0;
      padding: 1rem;
      z-index: 1000;
      text-align: center;
    }
    .side-nav h4 {
      font-weight: 700;
      margin-top: 1rem;
      font-size: 1.5rem;
    }
    .side-nav ul {
      list-style: none;
      padding: 0;
      margin-top: 2rem;
    }
    .side-nav ul li {
      margin: 1rem 0;
    }
    .side-nav ul li a {
      color: white;
      text-decoration: none;
      font-weight: 600;
      text-transform: uppercase;
      display: block;
    }
    .side-nav ul li a:hover {
      color: #21f372;
    }
    .main-content {
      padding: 2rem;
    }
.hero {
  background: url('img/hero.jpg') no-repeat center center;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  color: white;
  padding: 5rem 2rem;
  border-radius: 12px;
  background-attachment: fixed;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  overflow: hidden;
}
    .hero h2 {
      font-size: 3rem;
      font-weight: 700;
    }
    .hero p {
      font-size: 1.2rem;
    }
    .btn-form {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 24px;
      font-size: 18px;
      font-weight: bold;
      text-decoration: none;
      color: white;
      background: linear-gradient(135deg, #038127, #0bd544);
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: all 0.5s ease-in-out;
    }
    .btn-form:hover {
      background: linear-gradient(135deg, #0bd544, #038127);
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }
    .section-title {
      margin-top: 2rem;
      font-weight: 700;
      color: #333;
      text-align: center;
      text-transform: uppercase;
    }
    .heading-border {
      width: 60px;
      height: 10px;
      background-color: #21f372;
      margin: 0 auto 20px auto;
    }
    .table thead {
      background-color: #198754;
      color: white;
    }


    /* tampilan mobile */

    @media (max-width: 768px) {
  body {
    padding-left: 0;
    padding-top: 4rem;
    margin-top: -70px;
  }

  .side-nav {
    width: 100%;
    height: auto;
    position: relative;
    text-align: center;
    padding: 1rem 0;
  }

  .side-nav ul {
    display: none; /* Sembunyikan menu navigasi */
  }

  .main-content {
    padding: 1rem;
  }

  .hero {
    padding: 2rem 1rem;
    text-align: center;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-form {
    font-size: 16px;
    padding: 10px 20px;
    margin: 10px 5px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  table {
    font-size: 14px;
  }

  .table td {
    padding: 0.5rem;
  }
}
