.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Minimal top padding, assuming body handles --header-offset */
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: cover;
  z-index: 1;
  /* No position absolute or negative margins to stack text on image */
}

.page-gdpr__hero-content {
  z-index: 2;
  padding: 20px;
  max-width: 900px;
  width: 100%;
  margin-top: 20px; /* Space between image and text */
  box-sizing: border-box;
}

.page-gdpr__main-title {
  font-size: 2.8em;
  font-weight: bold;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-gdpr__intro-text {
  font-size: 1.1em;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
  color: #140C0C; /* Dark text for contrast */
  border: none;
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-gdpr__btn-secondary {
  background: #2A1212; /* Card BG */
  color: #F3C54D; /* Gold */
  border: 2px solid #F3C54D; /* Gold border */
}

.page-gdpr__btn-secondary:hover {
  transform: translateY(-2px);
  background: #F3C54D;
  color: #140C0C;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-gdpr__light-bg {
  background-color: #140C0C; /* Use background color for consistency */
  color: #FFF1E8; /* Text Main */
}

.page-gdpr__dark-section {
  background-color: #2A1212; /* Card BG */
  color: #FFF1E8; /* Text Main */
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #F3C54D; /* Gold */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__sub-section {
  margin-bottom: 40px;
}

.page-gdpr__sub-title {
  font-size: 1.6em;
  color: #C61F1F; /* Primary color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #FFF1E8; /* Text Main */
}

.page-gdpr__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  max-width: 100%;
  object-fit: cover;
}

.page-gdpr__principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-gdpr__principle-card {
  background: #140C0C; /* Background */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #FFF1E8; /* Text Main */
}

.page-gdpr__principle-card:hover {
  transform: translateY(-5px);
}

.page-gdpr__card-title {
  font-size: 1.3em;
  color: #F3C54D; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__card-text {
  font-size: 0.95em;
  line-height: 1.5;
  color: #FFF1E8; /* Text Main */
}

.page-gdpr__rights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-gdpr__right-item {
  background: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 8px;
  padding: 20px;
  color: #FFF1E8; /* Text Main */
}

.page-gdpr__right-title {
  font-size: 1.2em;
  color: #C61F1F; /* Primary color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__right-description {
  font-size: 0.9em;
  line-height: 1.5;
  color: #FFF1E8; /* Text Main */
}

.page-gdpr__compliance-measures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-gdpr__measure-card {
  background: #140C0C; /* Background */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF1E8; /* Text Main */
}

.page-gdpr__contact-cta {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__link {
  color: #F3C54D; /* Gold */
  text-decoration: underline;
}

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

.page-gdpr__faq-section {
  padding: 60px 20px;
  background-color: #140C0C; /* Background */
  color: #FFF1E8; /* Text Main */
}

.page-gdpr__faq-list {
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__faq-item {
  background: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF1E8;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #F3C54D; /* Gold */
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For <details> summary */
}

.page-gdpr__faq-question::-webkit-details-marker {
  display: none;
}

.page-gdpr__faq-question:hover {
  background-color: rgba(243, 197, 77, 0.1);
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #C61F1F; /* Primary color */
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

  /* HERO 主图区域 */
  .page-gdpr__hero-section {
    padding-top: 10px !important; /* Minimal top padding */
    padding-bottom: 20px;
  }

  .page-gdpr__main-title {
    font-size: 2em;
    margin-bottom: 10px;
  }

  .page-gdpr__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
    padding: 0 15px;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    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__content-area,
  .page-gdpr__faq-section {
    padding: 30px 15px;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-gdpr__sub-title {
    font-size: 1.4em;
  }

  .page-gdpr__principles-grid,
  .page-gdpr__rights-list,
  .page-gdpr__compliance-measures {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__principle-card,
  .page-gdpr__right-item,
  .page-gdpr__measure-card,
  .page-gdpr__faq-item {
    padding: 20px;
  }

  .page-gdpr__card-title,
  .page-gdpr__right-title {
    font-size: 1.1em;
  }

  .page-gdpr__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-gdpr__faq-answer {
    padding: 0 20px 15px;
  }

  /* 通用图片与容器 */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__container,
  .page-gdpr__sub-section,
  .page-gdpr__principle-card,
  .page-gdpr__right-item,
  .page-gdpr__measure-card,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Product display - N/A for this page, but if present, would follow similar max-width: 100% logic */
}