body {
  font-family: 'roboto', Arial;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
  font-size: 15px; /* ukuran dasar font */
  letter-spacing: 0px; /* jarak antar huruf */
  line-height: 1.6;      /* jarak antar baris */
  
  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: 32px;
}


.container {
  padding: 20px;
  padding-bottom: 40px; 
  max-width: 900px;
  margin: auto;
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-top: -60px;
  margin-bottom: 40px; 
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

h2 {
  color: #2277ff;
  margin-top: 30px;
  font-size: 18px; /* ukuran dasar font */
  border-bottom: 2px solid #e0e0e0;
}
.container h2 {
margin-bottom: 2px; /* atau lebih kecil lagi sesuai kebutuhan */
}

.container p {
margin-top: 0; /* hilangkan jarak atas */
}
ul, ol {
  padding-left: 20px;
  margin-top: 0; /* hilangkan jarak atas */
}

.highlight {
  background: #bf1212;
  color: #ffe20b;
  padding: 15px;
  border-radius: 6px;
  margin: 20px 0;
  font-weight: 600;
}

.cta {
  background: #2277ff;
  color: white;
  padding: 20px;
  text-align: center;
  margin: 40px 0 10px; /* Atas 40px, kanan 0px, bawah 10px */
  border-radius: 8px;
}

.buy-button {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    background-color: #f67905;
    color: #fff;
    padding: 12px 50px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold; /* ← ini yang bikin bold */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .buy-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: left 0.4s ease;
  }
  
  .buy-button:hover {
    background-color: #fd6f03;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .buy-button:hover::after {
    left: 130%;
  }
  
  .button-wrapper {
    display: flex;
    justify-content: center;
  }
  

.flex-section {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  flex-wrap: wrap;
}

.flex-section .content {
  flex: 1 1 50%;
  min-width: 280px;
}

.flex-section .features-image {
  flex: 1 1 40%;
  text-align: left;
}

.flex-section .features-image img {
  max-width: 100%;
  height: auto;
  
}

/* RESPONSIVE - HP / Tablet */
@media screen and (max-width: 768px) {
  .flex-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .flex-section .content,
  .flex-section .features-image {
    width: 100%;
    text-align: center;
  }

  .flex-section .content ul {
    text-align: left;
    padding-left: 20px;
  }

  header h1 {
    font-size: 24px;
  }

  .container h2 {
    font-size: 16px;
  }

  body {
    font-size: 14px;
  }
}
