.page-privacy-policy {
  color: #ffffff; /* Áp dụng màu chữ sáng cho toàn bộ nội dung trang do nền body tối */
  padding-top: 120px; /* Khoảng đệm trên cho header cố định trên desktop */
}

@media (max-width: 768px) {
  .page-privacy-policy {
    padding-top: 100px; /* Khoảng đệm trên cho header cố định trên mobile */
  }
}

.page-privacy-policy__hero-section {
  background: linear-gradient(135deg, #0A2463, #3a5c9f); /* Gradient màu chủ đạo */
  padding: 60px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}

.page-privacy-policy__hero-container {
  max-width: 900px;
  width: 100%;
}

.page-privacy-policy__main-title {
  font-size: 42px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-privacy-policy__hero-description {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #E5B80B; /* Màu phụ đạo */
  color: #0A2463; /* Chữ màu chủ đạo để có độ tương phản cao */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-privacy-policy__cta-button:hover {
  background: #ffcc00; /* Hiệu ứng hover sáng hơn */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__content-section {
  padding: 50px 20px;
  background: #0d0d0d; /* Nền tối hơn một chút so với body để tạo lớp */
}

.page-privacy-policy__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-privacy-policy__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #E5B80B; /* Màu phụ đạo cho tiêu đề */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 2px solid rgba(229, 184, 11, 0.3);
  padding-bottom: 10px;
}

.page-privacy-policy__text-block {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-privacy-policy__list-item {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.page-privacy-policy__list-item strong {
  color: #E5B80B;
}

.page-privacy-policy__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-privacy-policy__link {
  color: #E5B80B; /* Màu phụ đạo cho liên kết */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: #ffcc00;
}

.page-privacy-policy__responsible-gaming-link {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 25px;
  background: #0A2463; /* Màu chủ đạo */
  color: #E5B80B; /* Màu phụ đạo cho chữ */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid #E5B80B;
}

.page-privacy-policy__responsible-gaming-link:hover {
  background: #1a3d82;
  color: #ffcc00;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-privacy-policy__faq-section {
  padding: 50px 20px;
  background: #000000; /* Nền tối nhất */
}

.page-privacy-policy__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: #0A2463; /* Nền câu hỏi màu chủ đạo */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  background: #1a3d82; /* Nền câu trả lời tối hơn một chút */
  color: #f0f0f0;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  border-radius: 0 0 5px 5px;
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #0A2463;
  border: 1px solid #0A2463; /* Viền cùng màu nền */
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-privacy-policy__faq-question:hover {
  background: #1a3d82;
  border-color: #E5B80B;
}

.page-privacy-policy__faq-question:active {
  background: #2a52a3;
}

.page-privacy-policy__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-privacy-policy__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #E5B80B; /* Màu phụ đạo cho nút toggle */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Biến đổi dấu + thành X hoặc - */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-privacy-policy__main-title {
    font-size: 36px;
  }
  .page-privacy-policy__hero-description {
    font-size: 16px;
  }
  .page-privacy-policy__section-title {
    font-size: 28px;
  }
  .page-privacy-policy__text-block, .page-privacy-policy__list-item {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 40px 15px;
  }
  .page-privacy-policy__main-title {
    font-size: 30px;
  }
  .page-privacy-policy__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-privacy-policy__content-section, .page-privacy-policy__faq-section {
    padding: 30px 15px;
  }
  .page-privacy-policy__section-title {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-privacy-policy__text-block, .page-privacy-policy__list-item {
    font-size: 14px;
  }
  .page-privacy-policy__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-privacy-policy__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-privacy-policy__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-privacy-policy__faq-answer {
    padding: 0 15px;
  }
  .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    padding: 15px !important;
  }
}