.page-gdpr {
  color: #f8f9fa; /* Màu chữ mặc định cho toàn bộ trang (trên nền tối của body) */
  background-color: transparent; /* Body đã có nền tối */
}

.page-gdpr__hero-section {
  padding: 180px 20px 60px; /* Thêm padding-top để tránh bị che bởi header cố định */
  background: linear-gradient(135deg, #0A2463, #3C5A8B); /* Sử dụng màu chủ đạo */
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-gdpr__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #FFD700; /* Màu vàng phụ trợ nổi bật */
}

.page-gdpr__intro-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #0A2463;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(90deg, #FFA500, #FFC107);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: #000000;
}

.page-gdpr__content-section {
  padding: 60px 20px;
}

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-gdpr__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-gdpr__dark-bg {
  background-color: #0A2463;
  color: #ffffff;
}

.page-gdpr__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: inherit;
}

.page-gdpr__sub-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 35px;
  margin-bottom: 15px;
  color: inherit;
}

.page-gdpr p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.8;
  color: inherit;
}

.page-gdpr a {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: #FFA500;
}

.page-gdpr strong {
  font-weight: bold;
}

.page-gdpr__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__image-centered {
  display: block;
  margin: 30px auto;
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__commitment-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 25px;
  font-size: 17px;
  line-height: 1.8;
  color: inherit;
}

.page-gdpr__commitment-list li {
  margin-bottom: 10px;
}

/* FAQ Section */
.page-gdpr__faq-section {
  padding: 60px 20px;
  background-color: #0A2463; /* Nền tối */
  color: #ffffff; /* Chữ sáng */
}

.page-gdpr__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #1A3A70; /* Nền FAQ item tối hơn */
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1A3A70;
  border: 1px solid #2B5090;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-gdpr__faq-question:hover {
  background: #2B5090;
  border-color: #3C6AB0;
}

.page-gdpr__faq-question:active {
  background: #3C6AB0;
}

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

.page-gdpr__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  color: #FFA500;
  transform: rotate(45deg); /* Để dấu + thành dấu x */
}

.page-gdpr__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 25px;
  opacity: 0;
  background: #2B5090; /* Nền câu trả lời */
  color: #f0f0f0;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important; /* Đảm bảo đủ cao cho mọi nội dung */
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-section {
    padding-top: 140px;
  }
  .page-gdpr__main-title {
    font-size: 40px;
  }
  .page-gdpr__section-title {
    font-size: 30px;
  }
  .page-gdpr__sub-title {
    font-size: 22px;
  }
  .page-gdpr p, .page-gdpr__commitment-list li {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 120px; /* Điều chỉnh padding-top cho mobile */
    padding-bottom: 40px;
  }
  .page-gdpr__main-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .page-gdpr__intro-text {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }
  .page-gdpr__content-section {
    padding: 40px 15px;
  }
  .page-gdpr__section-title {
    font-size: 26px;
    margin-bottom: 25px;
  }
  .page-gdpr__sub-title {
    font-size: 20px;
    margin-top: 30px;
  }
  .page-gdpr p, .page-gdpr__commitment-list li {
    font-size: 15px;
  }
  .page-gdpr__image-full-width, .page-gdpr__image-centered {
    margin: 20px 0;
    max-width: 100%;
  }
  .page-gdpr__faq-question {
    padding: 15px 20px;
  }
  .page-gdpr__faq-question h3 {
    font-size: 16px;
  }
  .page-gdpr__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
    margin-left: 15px;
  }
  .page-gdpr__faq-answer {
    padding: 0 20px;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px 20px !important;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 28px;
  }
  .page-gdpr__section-title {
    font-size: 22px;
  }
  .page-gdpr__sub-title {
    font-size: 18px;
  }
  .page-gdpr__cta-button {
    font-size: 16px;
    padding: 10px 25px;
  }
  .page-gdpr p, .page-gdpr__commitment-list li {
    font-size: 14px;
  }
  .page-gdpr__faq-question h3 {
    font-size: 15px;
  }
  .page-gdpr__faq-toggle {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }
}