.hero {
    background-color: #6c63ff;
    color: white;
    padding: 50px 0;
    text-align: center;
  }
  .hero h1 {
    font-size: 3rem;
    font-weight: bold;
  }
  .hero p {
    margin: 20px 0;
    font-size: 1.2rem;
  }
  .hero img {
    max-width: 100%;
    height: auto;
  }
  .services {
    padding: 50px 0;
  }
  .service-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: transform 0.3s;
  }
  .service-box:hover {
    transform: scale(1.05);
    background-color: #f8f9fa; /* Warna latar saat hover */
    cursor: pointer;
  }
  .table {
    margin-bottom: 0;
    border: 1px solid #1f1818;
    border-radius: 10px; /* Lengkungan pada ujung tabel */
    overflow: hidden; /* Menghindari konten keluar dari area tabel */
    font-size: 12px;
  }
  .table th,
  .table td {
    border: 1px solid #616060;
    font-size: 12px;
  }
  .table th {
    background-color: #6b87e8;
    color: white;
    font-weight: 500;
  }
  
  