/* Reset dan pengaturan dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body, html {
    height: 100%;
    overflow: hidden;
  }
  
  /* Gaya untuk bagian hero */
  .hero {
    position: relative;
    height: 100vh;
    background-image: url('bg_v1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
  }
  
  .overlay {
    
  }
  
  .content {
    position: absolute;
    z-index: 2;
    color: #ffffff;
    max-width: 50%;
    transform: translate(-10px, -20px); /* Geser kiri 10px, atas 20px */
  }
  
  .content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: -1px;
    transform: translateY(-20px); /* Naik 20px */
  }
  
  .content p {
    font-size: 1.2rem;
    margin-bottom: 23px;
  }
  
  button {
    padding: 15px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 114, 255, 0.4);
    font-weight: 600;
  }
  
  button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 114, 255, 0.6);
  }
  
  .image-container {
    position: relative;
    z-index: 2;
    max-width: 40%;
    transform: translateX(-350px); /* Geser ke kiri 50px */
    
  }
  
  .image-container img {
    width: 125%;
    height: auto;
    border-radius: 10px;
  }
  