.hero {
  position: relative;
  width: 100%;          /* pakai % biar gak geser */
  min-height: 94vh;    /* full tinggi layar */
  background: url('/gambar/slide/IMG_20251128_180514_1_11zon.webp') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 40px 20px;
  box-sizing: border-box;
}
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.content {
  position: relative;
  max-width: 1200px;
  z-index: 2;
}

.content h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.logos img {
  max-height: 150px;
  width: auto;
}

.info-text {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
  
}

.info-text .right{
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

.info-text .left {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: right;
}
.info-text p {
  white-space: pre-line;
}

.linkwa{
    color: #25D366;
    text-decoration: none;
}

/* Responsif */
@media (max-width: 990px) {
  .info-text {
    flex-direction: column;
    text-align: center;
  }
  .info-text .left, .info-text .right {
    text-align: justify;
  }
  .info-text .left{
    text-align: center;
  }
}
