body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
      color: #000000;
    }

    header {
      background: #4b0082;
      color: white;
      padding: 15px;
      text-align: center;
    }

    nav {
      background: #333;
      padding: 10px;
      text-align: center;
    }

    nav a {
      color: white;
      text-decoration: none;
      margin: 0 15px;
    }

    nav a:hover {
      text-decoration: underline;
    }

    /* Slider */
    .slider {
      position: relative;
      max-width: 100%;
      height: 350px;
      overflow: hidden;
      margin: auto;
    }

    .slide {
      display: none;
      width: 100%;
      height: 350px;
      object-fit: cover;
    }

    .prev, .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      color: white;
      border: none;
      padding: 10px;
      cursor: pointer;
      font-size: 20px;
    }

    .prev { left: 10px; }
    .next { right: 10px; }

    h2 {
      text-align: center;
      margin: 30px 0 15px;
    }

    .unggulan-section {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 50px 20px;
      gap: 40px;
      flex-wrap: wrap;
    }

    .unggulan-text {
      flex: 1;
      min-width: 280px;
      max-width: 400px;
    }

    .unggulan-text h2 {
      text-align: justify;
      font-size: 2rem;
      margin-bottom: 15px;
    }

    .unggulan-text p {
      font-size: 1rem;
      line-height: 1.6;
      color: #9a9a9a;
    }

    .unggulan-images {
      flex: 1;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      max-width: 800px;
    }

    .unggulan-images img {
      width: calc(33.33% - 10px);
      max-width: 250px;
      border-radius: 12px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .unggulan-images img:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
    }


    /* Gallery */
    .gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
      padding: 20px;
    }

    .gallery img {
      width: 100%;
      height: auto;
      border-radius: 6px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }



    /* Mengapa Memilih */
    .why {
      padding: 20px;
      background: #fff;
    }

    .why h2 {
      color: red;
      font-weight: bold;
    }

    .why p {
      margin: 10px 0;
      line-height: 1.6;
    }

    /* Tentang Kami */
    .about {
  background: #f7f7f7; /* warna abu soft */
  padding: 60px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.about-text {
  text-align: justify;
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #111;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444;
}

.partners {
  background: #f7f7f7;
  padding: 60px 20px;
  text-align: center;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
}

.partners h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #111;
  font-weight: bold;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.partner-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-item img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Responsive: Mobile jadi 2 kolom */
@media (max-width: 768px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* HP kecil jadi 1 kolom */
@media (max-width: 480px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}

.address-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.address-box {
  background: #fff;
  color: #333;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.address-box h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 20px;
  color: #000;
}

.address-box h3:first-child {
  margin-top: 0;
}

.address-box p {
  margin: 0 0 15px 0;
  line-height: 1.6;
}

.address-box .icon {
  color: red;
  margin-right: 8px;
}

.contact-btn {
  text-align: left;
  margin-top: 25px;
}

.contact-btn a {
  display: inline-block;
  background: #eb1010;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.contact-btn a:hover {
  background: #76c92e;
}


    footer {
      background: #222;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: 30px;
    }
    
        .layanan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
    }

    .layanan-item {
    background: #f9f9f9;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease;
    }

    .layanan-item:hover {
    transform: translateY(-5px);
    }

    .layanan-item i {
    font-size: 30px;
    color: red;
    margin-bottom: 10px;
    }