
.banner {
  min-height: 70vh;
  background-color: #ffffff;
  overflow: hidden;
}

/* Kolom gambar di sisi kanan */
.banner-image {
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-image .img-center {
  max-width: 90%;
  height: auto;
}

/* Kolom teks di sisi kiri */
.text-content {
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}

/* Typography */
.text-content h1 {
  color: #222;
  font-size: 2.5rem;
  font-weight: 700;
}

.text-content p {
  color: #555;
  font-size: 1.125rem;
}

/* Tombol CTA */
.btn-warning {
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-warning:hover {
  background-color: #e69500;
  color: #fff;
}

/* Responsive fix untuk mobile */
@media (max-width: 767.98px) {
  .banner,
  .text-content,
  .banner-image {
    min-height: auto;
    height: auto;
    padding: 2rem 1rem;
  }

  .text-content {
    text-align: center !important;
  }
}

.logo-temudi{
  width: 50% !important;
}