/* Container Utama */
.main-container {
  margin: 30px auto;
  padding: 0 15px;
}

/* ==================== INFORMASI LENGKAP ==================== */
.info-box {
  background: #ffffff00;
  border: 2px solid #b00000;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 50px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr {
  border-bottom: 1px solid #e5e7eb;
}

.info-table tr:last-child {
  border-bottom: none;
}

.info-table td {
  padding: 14px 20px;
  font-size: 16px;
}

.info-label {
  font-weight: 600;
  color: #818181;
  width: 45%;
}

.info-value {
  text-align: right;
  font-weight: 700;
  color: #818181;
}

/* ==================== TESTIMONI ==================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.testi-card {
  background: #ffffff00;
  border: 2px solid #b00000;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testi-avatar {
  width: 60px;
  height: 60px;
  background: #ffedd500;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

/* ==================== FAQ ==================== */
.faq-item {
  background: #ffffff00;
  border: 2px solid #b00000;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-summary {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  color: #818181;
}

.faq-content {
  padding: 0 24px 22px;
  color: #818181;
  line-height: 1.5;
}

.arrow {
  font-size: 22px;
  transition: 0.3s;
}

.faq-item[open] .arrow {
  transform: rotate(180deg);
}

/* ==================== ARTIKEL PILLAR ==================== */
.pillar-article { color:#818181; line-height:1.7; font-size:16px; }
.pillar-article h2 { font-size:24px; color:#818181; margin:38px 0 16px; }
.pillar-article h3 { font-size:19px; color:#b00000; margin:26px 0 10px; }
.pillar-article p { margin:0 0 16px; }
.pillar-article ul, .pillar-article ol { margin:0 0 18px; padding-left:22px; }
.pillar-article li { margin-bottom:10px; }
.pillar-table-wrap { overflow-x:auto; margin:0 0 22px; }
.pillar-table { border-collapse:collapse; width:100%; text-align:left; font-size:14px; min-width:640px; }
.pillar-table th { background:#1a1a1a; color:#fff; padding:12px; }
.pillar-table td { padding:12px; border:1px solid #e5e7eb; }
.pillar-note { font-size:14px; font-style:italic; color:#818181; border-left:3px solid #b00000; padding-left:14px; margin:0 0 24px; }
