body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #ffffff !important; /* Pakai !important untuk override */
  color: #001f3f;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: none !important;    /* Pastikan gambar dihapus */
}
/* Hapus overlay karena tidak dibutuhkan di background putih */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Montserrat', sans-serif; /* atau font luxury kamu */
}

.container {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: #fff;
}

.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.6;
}

.logo img {
  max-width: 180px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
}

.contact {
  margin-top: 20px;
  font-size: 1rem;
}

.contact a {
  color: #fff;
  text-decoration: underline;
}

html {
  background-color: #ffffff !important;
}

.container {
  position: relative;
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.logo img {
  max-width: 180px;
  margin-bottom: 30px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
  color: #001f3f;                    /* navy elegan */
}

p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #444;                       /* abu gelap untuk readability */
}

.contact {
  font-size: 14px;
  color: #666;
}

.contact a {
  color: #bfa76f;                    /* gold aksen */
  text-decoration: none;
}