body {
    background-color: #ebf749;
    font-family: 'Times New Roman', Times, serif, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  
  .hero-section {
    padding: 20px;
  }
  
  .hero-section h1 {
    font-size: 30px;
    color: #007900;
  }
  
  .hero-section h3 {
    Font-size: 15px;
    color: #000000;
  }

  .hero-section h5 {
    Font-size: 12px;
    color: #007000;
  }

  .hero-section h6 {
    font-size: 12px;
    color: #ff0000;
  }
  .hero-section p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  /* Galeri Slide */
  .gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
  }
  
  .image-container {
    width: 300px;
    height: 250px;
    overflow: hidden;
    position: relative;
  }
  
  .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .gallery-image.active {
    opacity: 1;
  }
  
  .nav-button {
    background-color: #00aa00;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 0 10px;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
  }
  
  /* Kartu Armada */
  .vehicle-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .card {
    background: rgb(255, 255, 255);
  border: 3px solid #00aa00;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  width: calc(50% - 20px); /* 2 kolom */
  max-width: 300px;
  box-sizing: border-box;
  }
  
  .card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 5px;
  }
  
  .card h3 {
    color: #288802;
    margin: 15px 0;
  }
  
  .price {
    color: #ff0000;
    font-weight: bold;
    margin-top: 10px;
  }

  .btn-pesan {
    display: inline-block;
    background-color: #00aa00;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 10px;
  }
  
  .btn-pesan:hover {
    background-color: #007000; /* Warna lebih gelap saat hover */
  }
  
  .tabel-pemakaian {
    width: 90%;
    border-collapse: collapse;
    margin-top: 20px;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
  }
  
  .tabel-pemakaian th {
    background-color: rgb(35, 141, 2);
    color: rgb(255, 255, 255);
    padding: 10px;
    border: 2px solid black;
    font-weight: bold;
    text-align: center;
  }
  
  .tabel-pemakaian td {
    border: 1px solid black;
    padding: 10px;
    background-color: white;
  }
  
  .keterangan {
    background-color: #ffffff;
    padding: 20px;
    margin: 30px auto;
    max-width: 550px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: 'Times New Roman', Times, serif, sans-serif;
  }
  
  .keterangan h2 {
    color: #333333;
    margin-bottom: 15px;
    font-size: 24px;
  }
  
  .keterangan ul {
    list-style: disc;
    padding-left: 20px;
    text-align: justify;
  }
  
  .keterangan li {
    margin-bottom: 10px;
    font-size: 18px;
    color: #444;
  }
  
  /* Form Pemesanan */
  .form-container {
    background-color: #ffffff;
    border: 2px solid #00aa00;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
  }
  
  .form-container h2 {
    color: #007000;
    margin-bottom: 20px;
  }
  
  .form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
  }
  
  .form-group input,
  .form-group select {
    flex: 1 1 45%;
    margin: 5px;
    padding: 10px;
    border: 1px solid #00aa00;
    border-radius: 5px;
  }
  
  .full-width {
    flex: 1 1 100%;
  }
  
  .btn-whatsapp {
    background-color: #00aa00;
    color: white;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
  }
  
  /* Tombol Sosial Media */
  .social-buttons {
    margin: 30px 0;
  }
  
  .social-buttons a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .social-buttons .whatsapp {
    background-color: #25D366;
  }
  
  .social-buttons .instagram {
    background-color: #E1306C;
  }
  
  .social-buttons .facebook {
    background-color: #1877F2;
  }

  .social-buttons .tiktok {
    background-color: #000000;
  }
  
  /* Map */
  .map-container {
    margin: 30px auto;
  }
  
  .map-container iframe {
    width: 90%;
    max-width: 600px;
    height: 300px;
    border: 0;
    border-radius: 10px;
  }
  
  .location-title {
    font-size: 20px;
    font-weight: bold;
    color: #007000;
    margin-top: 20px;
  }
  
  .location-desc {
    margin-bottom: 20px;
    color: #444;
  }
  