body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

header {
    background: #004aad;
    color: white;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
}

.hero {
    padding: 50px 20px;
}

section {
    padding: 40px 20px;
    text-align: center;
}

.services, .features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service, .feature {
    border: 1px solid #ddd;
    padding: 20px;
    width: 300px;
    background: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer {
    background: #004aad;
    color: white;
    padding: 10px;
    text-align: center;
}
/* Navbar Styling */
/* Navbar Container */
/* Navbar Container */
.navbar {
    background-color: #fff; /* Background hitam */
    color: #020202; /* Warna teks putih */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px; /* Jarak dalam navbar */
    height: 60px; /* Tinggi navbar */
}

/* Logo */
.navbar .logo img {
    height: 50px; /* Tinggi logo */
}

/* Menu Navbar */
.navbar .menu {
    display: flex;
    align-items: center; /* Rata tengah secara vertikal */
    gap: 30px; /* Jarak antar item menu */
}

.navbar .menu a {
    color: #000000; /* Warna teks putih */
    text-decoration: none; /* Hilangkan garis bawah */
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar .menu a:hover {
    color: #0F78CB; /* Warna teks saat hover */
}

/* Tombol Masuk */
.navbar .btn-login {
    background-color: #0F78CB; /* Warna oranye */
    color: #ffff; /* Warna teks hitam */
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.navbar .btn-login:hover {
    background-color: #0F78CB; /* Oranye lebih gelap saat hover */
}
/* Hero Section */
/* Hero Section */
.hero {
    position: relative; /* Dibutuhkan untuk mengatur elemen di dalamnya dengan posisi absolut */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0056b3;
    color: white;
    padding: 2rem;
    overflow: hidden; /* Supaya elemen tidak keluar dari header */
  }
  
  .hero-text {
    max-width: 50%;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative; /* Untuk menempatkan kotak di dekat teks */
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  /* Kotak Dekoratif */
  .decorative-boxes {
    position: absolute;
    top: -20px; /* Letakkan di pojok atas */
    right: -20px; /* Dekatkan ke kanan */
  }
  
  .decorative-boxes .box {
    width: 60px;
    height: 60px;
    border: 3px solid white;
    position: absolute;
    border-radius: 5px;
    opacity: 0.8;
  }
  
  .decorative-boxes .box:nth-child(1) {
    top: 0;
    right: 0;
  }
  
  .decorative-boxes .box:nth-child(2) {
    top: 20px;
    right: 20px;
  }
  
  .decorative-boxes .box:nth-child(3) {
    top: 40px;
    right: 40px;
  }
  
  /* Hero Image */
  .hero-image img {
    max-width: 400px;
    border-radius: 10px;
  }
  
  /* Footer */
  footer {
    background-color: #003f7d;
    color: white;
    text-align: center;
    padding: 1rem 0;
  }
  