/* ===== FAQ Accordion Style - Nền sáng, chữ đen ===== */
/* ===== Top Navigation - Nền sáng, chữ đen ===== */
/* ===== TOP NAV - Nền sáng, chữ đen ===== */
.dlhl-topnav {
  background: #ffffff; /* Nền trắng */
  border-bottom: 1px solid #e0e0e0; /* Viền nhẹ */
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

/* Link menu */
.dlhl-topnav a {
  color: #222; /* Chữ đen */
  padding: 14px 16px;
  display: block;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease;
}

/* Hover */
.dlhl-topnav a:hover {
  background: #f5f5f5; /* Nền xám nhạt */
  color: #0073aa; /* Xanh chủ đạo */
}

/* Mục đang active */
.dlhl-topnav a.active {
  color: #0073aa;
  font-weight: bold;
  border-bottom: 2px solid #0073aa;
}

/* Responsive cho mobile */
@media (max-width: 768px) {
  .dlhl-topnav {
    flex-direction: column;
    align-items: flex-start;
  }
  .dlhl-topnav a {
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
  }
}


#faq {
  font-family: Arial, sans-serif;
  color: #222; /* Chữ đen đậm vừa phải */
  background: #fff; /* Nền trắng */
  padding: 20px;
  border-radius: 8px;
}

/* Mỗi nhóm câu hỏi */
[data-group] {
  margin-bottom: 25px;
  border-top: 1px solid #e0e0e0;
}

/* Mỗi item câu hỏi */
.dlhl-item {
  border-bottom: 1px solid #e0e0e0;
}

/* Nút câu hỏi */
.dlhl-q {
  width: 100%;
  text-align: left;
  padding: 15px 50px 15px 15px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  background: #f9f9f9;
  border: none;
  outline: none;
  transition: background 0.3s ease;
  position: relative;
}

/* Icon dấu cộng/trừ */
.dlhl-q::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  color: #444;
  transition: transform 0.3s ease, color 0.3s ease;
}

.dlhl-item.active .dlhl-q::after {
  content: "−";
  color: #0073aa; /* Xanh chủ đạo */
}

/* Hover câu hỏi */
.dlhl-q:hover {
  background: #f1f1f1;
}

/* Nội dung câu trả lời */
.dlhl-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  padding: 0 15px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* Khi mở câu trả lời */
.dlhl-item.active .dlhl-a {
  max-height: 800px; /* đủ lớn để chứa nội dung dài */
  padding: 15px;
}

/* Nút mở tất cả / đóng tất cả */
/* Nút điều khiển FAQ */
.faq-controls {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.faq-controls button {
  background: #f5f5f5;
  border: 1px solid #ddd;
  color: #222;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-controls button:hover {
  background: #e9e9e9;
  border-color: #bbb;
}
