
    /* Gaya CSS untuk tampilan halaman */
    body {
      font-family: Arial, sans-serif;
      background-color: #030303;
      margin: 0;
      padding: 0;
    }

    .container {
  max-width: 1153px;
  margin: 0 auto;
  /* max-width: 1136px; */
  /* padding: 20px; */
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #000;
  max-width: 1136px;
  margin: 0 auto;
}

header {
  position: sticky;
  /* -webkit-position: -webkit-sticky; */
  top: 0;
  z-index: 100;
}

.logo {
     width: 161px;
 }

.logo {
  font-size: 24px;
  font-weight: bold;
}

.cta-buttons {
  display: flex;
  gap: 10px;
}

.cta-button {
  padding: 10px 20px;
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

    .banner {
      width: 100%;
      max-width: 100%;
      height: auto;
    }

    .card-container {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     /* justify-content: space-between; */
     gap: 20px;
     margin-top: 20px;
   }
   
   .card {
     flex-basis: calc(14.33% - 20px);
     background-color: #fff;
     padding: 3px;
     border-radius: 4px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
     box-sizing: border-box;
     text-align: center;
   }
   
   h1 {
    color: aliceblue;
  }

   .card-banner {
     width: 165px;
     height: 165px;
     object-fit: cover;
     border-radius: 4px;
   }
   
   .card-info {
     margin-top: 10px;
     text-align: center;
   }
   
   .card-name {
     font-weight: bold;
   }
   
   .card-status {
     color: green;
   }

 /* CSS */
.slider-container {
  position: relative;
  max-width: 1153px;
  margin: 0 auto;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider img {
  width: 100%;
  height: auto;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  cursor: pointer;
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}


.filter-buttons {
  text-align: center;
}


    footer {
      background-color: #333;
      color: #fff;
      padding: 20px;
      text-align: center;
    }

    @media screen and (max-width: 1136px) {
     .card {
       flex-basis: calc(50% - 20px);
     }
   }
   
   @media screen and (max-width: 767px) {
     .card {
       flex-basis: calc(50% - 20px);
     }
   }

  
   @media screen and (max-width: 479px) {
     .card {
       flex-basis: 100%;
     }
   }

   @media screen and (max-width: 479px) {
     .card-banner {
          width: 154px;
          height: 160px;
          object-fit: cover;
          border-radius: 4px;
        }
   }

   @media screen and (max-width: 479px) {
    .card {
      max-width: 160px;
       }
  }
