.page-gdpr {
  color: #ffffff; /* Body background is dark, so use light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #0a0a0a; /* Assuming shared.css sets body background to #0a0a0a */
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-gdpr__hero-section {
  position: relative;
  padding-top: 0; /* Assuming shared.css sets body padding-top */
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
  width: 100%;
  overflow: hidden;
}

.page-gdpr__hero-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.page-gdpr__hero-image {
  width: 100%;
  margin: 0;
}

.page-gdpr__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-gdpr__introduction-section {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  padding: 60px 0;
}

.page-gdpr__main-title {
  font-size: 38px;
  font-weight: bold;
  color: #FFD700; /* Gold brand color */
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-gdpr__description {
  font-size: 17px;
  color: #f0f0f0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

.page-gdpr__content-section {
  background-color: #0a0a0a;
  padding: 60px 0;
}

.page-gdpr__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #FFD700;
  text-align: left;
  margin-bottom: 30px;
  border-bottom: 2px solid #8B0000;
  padding-bottom: 15px;
}

.page-gdpr__text-block {
  margin-bottom: 40px;
}

.page-gdpr__text-block p {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-gdpr__text-block img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__sub-title {
  font-size: 24px;
  font-weight: bold;
  color: #8B0000; /* Red brand color */
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-gdpr__list-item {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 10px;
}

.page-gdpr__list-item strong {
  color: #FFD700;
}

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

.page-gdpr__link:hover {
  color: #fff;
}

.page-gdpr__faq-section {
  background-color: #1a1a1a;
  padding: 60px 0;
}

.page-gdpr__faq-list {
  margin-top: 30px;
}

/* FAQ容器样式 */
.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #2a2a2a;
  border: 1px solid #3a3a3a;
}

/* FAQ默认状态 - 答案隐藏 */
.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;
  color: #f0f0f0;
}

/* FAQ展开状态 - 🚨 使用!important和足够大的max-height确保一定能展开 */
.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important; /* 🚨 使用!important确保优先级，值 đủ lớn để chứa mọi nội dung */
  padding: 20px 25px !important;
  opacity: 1;
  background: #333333;
  border-radius: 0 0 8px 8px;
}

/* 问题样式 */
.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #1a1a1a;
  border-bottom: 1px solid #3a3a3a;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-gdpr__faq-question:hover {
  background: #2a2a2a;
}

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

/* 问题标题样式 */
.page-gdpr__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none; /* 防止h3标签阻止点击事件 */
}

/* 切换图标 */
.page-gdpr__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #8B0000;
  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: 32px;
  height: 32px;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg);
}

/* 移动端响应式设计 */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 32px;
  }
  .page-gdpr__section-title {
    font-size: 28px;
  }
  .page-gdpr__sub-title {
    font-size: 22px;
  }
  .page-gdpr__text-block p, .page-gdpr__list-item {
    font-size: 15px;
  }
  .page-gdpr__faq-question h3 {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__container {
    padding: 20px 15px;
  }
  .page-gdpr__hero-section {
    padding-top: 0 !important;
  }
  .page-gdpr__main-title {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .page-gdpr__description {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .page-gdpr__section-title {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .page-gdpr__text-block {
    margin-bottom: 30px;
  }
  .page-gdpr__text-block p, .page-gdpr__list-item {
    font-size: 14px;
  }
  .page-gdpr__sub-title {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .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;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px 20px !important;
  }

  /* Responsive image rules */
  .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 .page-gdpr__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Responsive button rules */
  .page-gdpr__cta-button,
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column !important;
  }
}