.page-gdpr {
  color: #f0f0f0; /* Sử dụng màu chữ nhạt cho nền tối */
  background-color: #000; /* Nền body tối */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Khoảng cách cho header cố định */
}

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #1A1A1A, #000000);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 3px solid #FFD700;
}

.page-gdpr__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__hero-title {
  font-size: 42px;
  font-weight: bold;
  color: #FFD700; /* Màu vàng thương hiệu */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 0;
}

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

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-gdpr__text-block {
  background-color: rgba(255, 255, 255, 0.05); /* Nền hơi trong suốt */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-gdpr__section-title {
  font-size: 32px;
  color: #FFD700; /* Màu vàng thương hiệu */
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: #FFD700;
  border-radius: 5px;
}

.page-gdpr__sub-section-title {
  font-size: 24px;
  color: #f8f8f8;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid #FFD700;
  padding-left: 15px;
}

.page-gdpr p {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.page-gdpr strong {
  color: #FFD700;
}

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

.page-gdpr a:hover {
  color: #fff;
  text-decoration: underline;
}

.page-gdpr__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-gdpr__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #e0e0e0;
}

.page-gdpr__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD700; /* Màu vàng thương hiệu */
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

.page-gdpr__contact-link {
  font-weight: bold;
}

.page-gdpr__faq-section {
  margin-top: 60px;
}

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.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 15px;
  opacity: 0;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important; /* Sử dụng!important để đảm bảo ưu tiên */
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 0 5px 5px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-gdpr__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFD700;
}

.page-gdpr__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

.page-gdpr__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #f0f0f0;
  pointer-events: none; /* Ngăn h3 chặn sự kiện click */
}

.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: 15px;
  pointer-events: none; /* Ngăn biểu tượng chặn sự kiện click */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  color: #fff;
  transform: rotate(45deg); /* Biểu tượng xoay khi mở */
}

.page-gdpr__faq-answer p {
  color: #d0d0d0;
  font-size: 15px;
}

.page-gdpr__cta-block {
  text-align: center;
  margin-top: 60px;
  padding: 40px 30px;
  background: linear-gradient(90deg, #1A1A1A, #000000);
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-gdpr__cta-title {
  font-size: 36px;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__cta-description {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-gdpr__btn-primary {
  background: #FFD700;
  color: #1A1A1A; /* Chữ tối trên nền vàng */
  border: 2px solid #FFD700;
}

.page-gdpr__btn-primary:hover {
  background: #e6c200;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: #FFD700; /* Chữ vàng trên nền trong suốt */
  border: 2px solid #FFD700;
}

.page-gdpr__btn-secondary:hover {
  background: #FFD700;
  color: #1A1A1A;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 36px;
  }
  .page-gdpr__section-title {
    font-size: 28px;
  }
  .page-gdpr__sub-section-title {
    font-size: 22px;
  }
  .page-gdpr__cta-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: 100px !important; /* Điều chỉnh cho mobile header */
    font-size: 16px;
    line-height: 1.6;
  }
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__hero-section {
    padding: 40px 15px;
  }
  .page-gdpr__hero-title {
    font-size: 30px;
  }
  .page-gdpr__hero-description {
    font-size: 16px;
  }
  .page-gdpr__content-section {
    padding: 40px 15px;
  }
  .page-gdpr__text-block {
    padding: 25px;
    margin-bottom: 30px;
  }
  .page-gdpr__section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .page-gdpr__sub-section-title {
    font-size: 20px;
    padding-left: 10px;
  }
  .page-gdpr p,
  .page-gdpr__list-item {
    font-size: 15px;
  }
  .page-gdpr__faq-question {
    padding: 15px;
  }
  .page-gdpr__faq-question h3 {
    font-size: 16px;
  }
  .page-gdpr__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px !important;
  }
  .page-gdpr__cta-block {
    padding: 30px 15px;
  }
  .page-gdpr__cta-title {
    font-size: 26px;
  }
  .page-gdpr__cta-description {
    font-size: 16px;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 26px;
  }
  .page-gdpr__section-title {
    font-size: 22px;
  }
  .page-gdpr__sub-section-title {
    font-size: 18px;
  }
  .page-gdpr__cta-title {
    font-size: 22px;
  }
}