* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background-color: #e4e4e4;
  }
  
  main {
    width: 100%;
    height: 650px;
  }

  .identity {
    background-color: white;
    padding-left: 25px;
  }
  
  .container {
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(8, 121, 25);
  }

  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    margin-left: 20px;
  }

  .logo span {
    font-weight: bold;
    color: white;
  }

  .navbar {
    padding: 10px 10px;
  }

  nav .animation{
    position: absolute;
    height: 5px;
    /* height: 5px; */
    bottom: 0;
    /* bottom: 0; */
    z-index: 0;
    background: #1abc9c;
    border-radius: 8px;
    transition: all .5s ease 0s;
  }

  .nav-links {
    display: flex;
    gap: 1.5rem;
  }

  .nav-link, .drop-down li {
    list-style: none;
    font-weight: 200;
    color: white;
    padding: 0.5rem 0.5rem;
    cursor: pointer;
  }

  .nav-link {
    position: relative;
    height: 53px;
    align-items: center;
  }

  .nav-link a {
    font-weight: bold;
    justify-content: center;
    font-size: 15px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    line-height: 50px;
    position: relative;
    z-index: 1;
    display: inline-block;
    text-align: center;
    transition: color 0.3s ease;
    font-weight: bold;
  }

  .drop-down {
    width: 200px;
    position: absolute;
    padding: 1rem 0;
    margin: 0 -0.2rem;
    background: rgb(8, 121, 25);
    box-shadow: 0 4px 12px rgba(0,0,0, 0.1);
    border-radius: 0.5rem;
    display: none;
  }

  .drop-down li:hover {
    background-color: white;
    color: rgb(8, 121, 25);
    font-weight: bold;
  }

  nav a:hover + .animation {
    width: 100%; /* Lebar penuh di bawah item saat hover */
  }

  .item:hover .drop-down {
    display: block;
  }

  .content {
    display: flex;
    justify-content: center;
  }

  hr {
    margin-top: 5px;
  }

  .facilities {
    display: flex;
    justify-content: center;
  }
  
  .facility-text {
    margin-top: 80px;
  }

  .facility-text hr {
    width: 550px;
  }

  tr {
    height: 25px;
  }

  td {
    width: 150px;
  }

  th {
    width: 400px;
    text-align: left;
  }

  .deskripsi {
    justify-content: center;
    width: 770px;
  }

  .deskripsi p {
    text-align: justify;
    margin-top: 10px;
    margin-bottom: 60px;
  }
  
  .facility h2 {
    font-weight: 1000;
    color: #2F2C7D;
    margin-bottom: 20px;
  }
  
  .facilities .facility {
    display: inline-block;
    margin-top: 20px;
    margin-right: 20px;
    vertical-align: top;
    text-align: center;
  }
  
  .facilities .facility img {
    display: block;
    margin: 0 auto 10px;
    width: 200px;
    height: 300px;
  }

  .issue-title {
    font-size: 1.5em;
    color: #b4b4b4;
    margin-bottom: 5px;
  }
  .issue-subtitle {
    font-size: 1em;
    color: #000000;
    background-color: #cfcfcf;
    margin-right: 40px;
  }

  .issue-content {
    margin-bottom: 150px;
  }

  .issue-article {
    font-size: 1em;
    color: #000000;
    background-color: #cfcfcf;
    margin-right: 40px;
  }

  .issue-article-content {
    margin-bottom: 150px;
  }

  .container-information {
    width: 250px;
    background-color: white;
  }

  .container-accreditation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .accreditation-info {
    width: 200px;
    margin-bottom: 200px;
    height: 40px;
    padding: 12px 10px;
    align-items: center;
    text-align: center;
    background-color: green;
    font-weight: bold;
    color: white;
  }

  .template {
    font-size: 13px;
    width: 200px;
    margin-bottom: 120px;
    height: 40px;
    padding: 12px 10px;
    align-items: center;
    text-align: center;
    background-color: green;
    font-weight: bold;
    color: white;
  }

  .logo-himpunan {
    margin-top: 20px;
    width: 100px;
    height: 100px;
  }

  .side-navigation {
    display: grid;
    place-items: center;
  }

  .button {
    width: 200px;
    list-style: none;
    background-color: green;
    margin: 2px;
    padding: 10px 20px;
  }

.button a {
  text-align: left;
  font-size: 13px;
  text-decoration: none;
  color: white;
}

.button i {
  text-align: left;
}

  .container-submission {
    margin-left: 25px;
  }

  .submission {
    background-color: green;
    font-size: 12px;
    color: white;
    height: 30px;
    align-items: center;
    text-align: center;
    width: 150px;
    padding: 7px 0;
  }

  footer {
    padding: 20px;
    text-align: center;
    background-color: green;
    color: #fff;
    font-size: 0.9em;
  }
  
  /* Responsif untuk tablet */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    header nav a {
      display: inline-block;
      margin: 5px 10px;
    }
  
    .hero h1 {
      font-size: 2.5em;
    }
  
    .facilities .facility {
      width: 80%;
      margin: 10px auto;
    }
  }
  
  /* Responsif untuk perangkat mobile */
  @media (max-width: 480px) {
    header {
      padding: 15px;
    }
  
    header .logo span {
      font-size: 1.2em;
    }
  
    header nav {
      flex-direction: column;
      margin-top: 5px;
    }
  
    header nav a {
      display: block;
      margin: 5px 0;
    }
  
    .hero h1 {
      font-size: 2em;
    }
  
    .hero p {
      font-size: 1em;
    }
  
    .hero button {
      padding: 8px 15px;
    }
  
    .about, .facilities {
      padding: 20px 10px;
    }
  
    .facilities .facility {
      width: 100%;
      margin: 10px 0;
    }
  
    footer {
      padding: 15px;
      font-size: 0.8em;
    }
  }
  