    /* Reset & base */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html, body { width: 100%; height: 100%; }
    body { font-family: Arial, sans-serif; background: #f2f2f2; color: #333; line-height: 1.5; }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; height: auto; }

    /* Wrapper & card */
    .wrapper2 {
      width: 90vw;
      max-width: 1200px;
      margin: 0 auto;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 24px 0 100px;
    }
    .card2 {
      width: 100%;
      background: #fff;
      border-radius: 8px;
      padding: 48px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      overflow-y: auto;
    }

    /* Header Logos */
    .header2 { display: flex; justify-content: center; flex-direction:column;  align-items: center; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
    .header2 .logo2 { width: 140px; }

    /* Search Bar */
    .search-bar2 { display: flex; align-items: center; background: #e9e9e9; border-radius: 50px; padding: 8px 16px; margin-bottom: 48px; }
    .search-bar2 input { flex: 1; border: none; background: transparent; padding: 12px; font-size: 1.2rem; outline: none; }
    .search-bar2 button { border: none; background: transparent; cursor: pointer; font-size: 1.25rem; color: #666; }

    /* Carousel */
.carousel2 {
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 40px;
}
.carousel-track2 {
  display: flex;
  transition: transform 0.3s ease;
}
.carousel-btn2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  border: none;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  font-size: 1.25rem;
}
.carousel-btn2.prev2 { left: 8px; }
.carousel-btn2.next2 { right: 8px; }

.carousel-item2 {
  flex: 0 0 calc(25% - 16px);
  max-width: calc(25% - 16px);
  margin: 0 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  scroll-snap-align: start;
}
.carousel-item2 .item-header {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}
.carousel-item2 .item-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #008080;
  object-fit: cover;
}
.carousel-item2 .promoted-label {
  font-size: 0.85rem;
  color: #666;
  opacity: 0.5;
}
.carousel-item2 .item-caption {
  font-size: 1rem;
  color: #666;
  opacity: 0.8;
  margin: 0 0 8px;
  text-align: left;
}
.carousel-item2 .item-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

    /* Grey Section */
    .grey-section2 { background: #f7f7f7; padding: 64px 24px; margin-bottom: 0px; border-radius: 8px; }

    /* About Section */
    .about2 { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-bottom: 48px; }
    .about2 .logo-large2 { width: 160px; flex-shrink: 0; margin-left: 60px; }
    .about2 .text2 { flex: 1; font-size: 1.2rem; color: #555; margin-top: 25px; text-align: justify; }

    /* Services */
    .services2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 32px; margin-bottom: 0px; }
    .services2 .item2 { display: flex; flex-direction: column; align-items: center; cursor: pointer; padding: 16px; border-radius: 8px; transition: background 0.3s, transform 0.3s; }
    .services2 .item2:hover { background: #e0f7fa; transform: scale(1.05); }
    .services2 .item2 img { width: 48px; height: 48px; margin-bottom: 12px; }
    .services2 .item2 h3 { font-size: 1.4rem; margin-bottom: 8px; text-align: center; }
    .services2 .item2 p { font-size: 1.2rem; color: #666; text-align: center; }

    /* Callout */
    .callout2 { background: #f7f7f7; padding: 48px 24px; text-align: center; margin-bottom: -20px; display: flex; flex-direction: column; align-items: center; }
    .callout2 .logo-242 { width: 300px; height: auto; margin: 0 auto 24px; }
    .callout2 .contact-info2 { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; }
    .callout2 .contact-info2 div { display: flex; align-items: center; gap: 8px; font-size: 1.1rem; }
    .callout2 .contact-info2 img { width: 20px; height: 20px; }

    /* Footer Fullwidth */
    .footer-wrapper2 { background: #009688; padding: 16px; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 100; }
    .footer2 .social2 { display: flex; justify-content: center; gap: 16px; margin-bottom: 8px; }
    .footer2 .social2 img { width: 34px; height: 34px;  }
    .footer2 .website2 { font-size: 0.9rem; color: #fff; text-align: center; }

    /* MEDIA QUERIES */
    @media (max-width: 1024px) {
      .carousel-item2 {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    }      
      .header2 .logo2 { width: 140px; }
      .about2 { flex-direction: column; align-items: flex-start; }
      .callout2 .logo-242 { width: 240px; }
    }
    @media (max-width: 600px) {
      .card2 { padding: 24px; }
      .carousel-item2 { flex: 0 0 100%; margin: 0; }
      .header2 .logo2 { width: 120px; }
      .search-bar2 input { font-size: 0.875rem; }
      .about2 .logo-large2 { width: 100px; }
      .services2 { gap: 16px; }
      .callout2 .logo-242 { width: 200px; }
      .footer2 .social2 img { width: 20px; height: 20px; }
    }
    @media (max-width: 768px) {
      /* tampil 2 item */
      .carousel-item2 {
        flex: 0 0 calc(50% - 16px);
        max-width: calc(50% - 16px);
      }
    }
    @media (max-width: 600px) {
      /* tampil 1 item */
      .carousel-item2 {
        flex: 0 0 100%;
	flex-direction: column;	
        max-width: 100%;
        margin: 0;
      }
