body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
  font-size: 15px;
  letter-spacing: 0px;
  line-height: 1.6;
  
  user-select: none;
  -webkit-user-select: none; 
  -moz-user-select: none;    
  -ms-user-select: none;
}

header {
  background: #3683ff;
  color: white;
  padding: 40px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

header h1 {
  margin: 0 0 10px;
  font-size: 28px;
  color: white;
}

.container {
  padding: 20px;
  max-width: 900px;
  margin: 0px auto 40px auto; /* ← ubah baris ini, tambahkan jarak bawah */
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-top: -60px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  
}

h2 {
  color: #2277ff;
  margin-top: 30px;
  font-size: 18px;
  border-bottom: 2px solid #e0e0e0;
  margin-right: 3px;
}

ol {
  padding-left: 20px;
  padding-right: 18px;
  margin-top: 0;
}

.container p {
  margin-top: -10px;
}

.highlight {
  background: #2277ff;
  color: #ffffff;
  padding: 20px;
  border-radius: 6px;
  margin: 40px 0 20px 0;
  font-weight: 600;
  
}
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* beri jarak bawah biar rapi */
  }
  
  .logo-container img {
    max-width: 150px; /* optional, untuk atur ukuran logonya */
    height: auto;
  }