/* Reset & basic style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Sections General */
.section {
  padding: 50px 10px;
  margin-top: 30px; /* Anda mungkin ingin mengatur ulang ini jika setiap section punya margin sendiri */
}

/* General Section Subtitle (jika digunakan di beberapa section) */
.section-subtitle {
  max-width: 800px;
  margin: 0 auto 20px; /* default margin bottom, bisa di-override per section */
  color: #666;
  font-size: 1.1rem;
  text-align: center; /* Subtitle biasanya di tengah */
}