body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
  box-sizing: border-box;
}

.logo-top {
  margin-bottom: 30px;
}

.logo {
  width: 160px;
}

.content-box {
  background-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  padding: 50px;
  border-radius: 40px 80px 60px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  width: 100%;
  transition: all 0.4s ease;
}

.main-title {
  font-size: 2.5em;
  text-align: center;
  color: #083c59;
  margin-bottom: 40px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.left {
  flex: 1 1 400px;
}

.left p {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-wa {
  display: inline-block;
  background-color: #20b486;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  margin: 20px 0;
  transition: background-color 0.3s ease;
}

.btn-wa:hover {
  background-color: #19966f;
}

.social {
  font-size: 0.95em;
  margin-top: 10px;
}

.social p {
  margin-bottom: 10px;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 5px;
}

.social-icons a img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

.right {
  flex: 1 1 400px;
  text-align: center;
}

.right img {
  max-width: 100%;
  max-height: 300px; /* batas tinggi maksimum agar tidak terlalu besar */
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .left,
  .right {
    flex: 1 1 100%;
  }

  .main-title {
    font-size: 2em;
  }

  .content-box {
    padding: 30px;
    border-radius: 30px;
  }
}
