* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background: white;
    color: #111;
    line-height: 1.6;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
  }
  
  .logo img {
    height: 50px;
  }
  
  .nav-links a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #111;
    font-weight: 500;
  }
  
  .hero {
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
  }
  
  .search-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .search-form label {
    text-align: left;
    font-weight: 500;
    font-size: 0.9rem;
    color: #666;
  }
  
  .search-form input,
  .search-form select {
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  
  .search-form button {
    padding: 0.9rem;
    background-color: #0c31ed;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .teks {
    max-width: 600px;
    margin: 0 auto ;
  }
  
  .search-form button:hover {
    background-color: #0927c4;
  }
  
  .footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #eee;
  }
  
  .result-message {
    margin-top: 24px;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .result-message.success {
    background-color: #e7f9ec;
    color: #207544;
    border: 1px solid #b6e1c8;
  }
  
  .result-message.error {
    background-color: #fdecea;
    color: #c0392b;
    border: 1px solid #f5c6cb;
  }