/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom, #e8f1f8, #ffffff);
    color: #333;
  }
  
  /* NAVBAR */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo img {
    height: 50px;
  }
  
  .navbar nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
  }
  
  .navbar nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  .login-buttons a {
    margin-left: 15px;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
  }
  
  .login-buttons .btn-masuk {
    background-color: #005da3;
    color: white;
  }
  
  /* HERO SECTION */
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background: linear-gradient(to right, #ffffff, #e6f0f8);
    flex-wrap: wrap;
  }
  
  .hero-text {
    max-width: 50%;
  }
  
  .hero-text h1 {
    font-size: 32px;
    color: #005da3;
    margin-bottom: 10px;
  }
  
  .hero-text h1 span {
    color: orange;
  }
  
  .hero-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #444;
  }
  
  .btn-daftar {
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
  }
  
  .hero-img img {
    max-width: 350px;
    height: auto;
  }
  
  /* FOOTER */
  footer {
    display: flex;
    justify-content: space-between;
    padding: 40px 50px;
    background-color: #f5f5f5;
    font-size: 14px;
    margin-top: 50px;
  }
  
  .footer-left img {
    height: 40px;
    margin-bottom: 10px;
  }
  
  .footer-left,
  .footer-right {
    max-width: 45%;
  }
  
  .footer-right h4 {
    margin-bottom: 10px;
    color: #005da3;
  }
  
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-text, .hero-img {
      max-width: 100%;
    }
  
    .navbar {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  
    footer {
      flex-direction: column;
      gap: 20px;
    }
  }
  