.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
  padding-bottom: 50px;
}

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

.page-gdpr__hero-image-wrapper {
  width: 100%;
  height: 600px; /* Fixed height for desktop hero */
  overflow: hidden;
  position: relative;
}

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

.page-gdpr__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  padding: 30px;
  background: rgba(13, 14, 18, 0.7); /* Semi-transparent background for readability */
  border-radius: 10px;
  z-index: 10;
  box-sizing: border-box;
  text-align: center;
}

.page-gdpr__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-gdpr__description {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #FFF3E6;
}

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 165, 58, 0.4);
}

.page-gdpr__section {
  padding: 50px 0;
  margin-bottom: 30px;
}

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

.page-gdpr__section-title {
  font-size: 2.2rem;
  color: #FFA53A; /* Auxiliary color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-gdpr__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-gdpr__article-figure {
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
  background: #17191F; /* Card BG */
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #A84F0C; /* Border */
}

.page-gdpr__article-figure img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  margin-bottom: 10px;
}

.page-gdpr__figure-caption {
  font-style: italic;
  font-size: 0.95rem;
  color: #FFF3E6;
}

.page-gdpr__contact-details {
  background: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  padding: 30px;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 800px;
  text-align: left;
  color: #FFF3E6;
}

.page-gdpr__contact-details p {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

/* FAQ Section */
details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #A84F0C; /* Border */
  overflow: hidden;
  background: #17191F; /* Card BG */
  color: #FFF3E6;
}
details.page-gdpr__faq-item summary.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-gdpr__faq-item summary.page-gdpr__faq-question::-webkit-details-marker {
  display: none;
}
details.page-gdpr__faq-item summary.page-gdpr__faq-question:hover {
  background: #2a2d3a; /* Slightly lighter Card BG on hover */
}
.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFB04D; /* Glow */
}
.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFA53A; /* Auxiliary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-gdpr__faq-item .page-gdpr__faq-answer {
  padding: 0 20px 20px;
  background: #101115; /* Darker than Card BG */
  border-radius: 0 0 8px 8px;
}

/* General image responsiveness */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries */
@media (max-width: 1024px) {
  .page-gdpr__hero-image-wrapper {
    height: 500px;
  }
  .page-gdpr__hero-content {
    max-width: 800px;
    padding: 25px;
  }
  .page-gdpr__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-gdpr__description {
    font-size: 1rem;
  }
  .page-gdpr__section-title {
    font-size: 2rem;
  }
  .page-gdpr__text-block, .page-gdpr__list-item, .page-gdpr__contact-details p {
    font-size: 1rem;
  }
  .page-gdpr__faq-qtext {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-gdpr__hero-section {
    padding-top: 10px;
    margin-bottom: 30px;
  }
  .page-gdpr__hero-image-wrapper {
    height: 400px;
  }
  .page-gdpr__hero-image {
    object-fit: contain !important; /* Mobile: prevent cropping, show full image */
    aspect-ratio: unset !important; /* Reset aspect ratio for object-fit: contain */
  }
  .page-gdpr__hero-content {
    position: static;
    transform: none;
    padding: 20px;
    max-width: 100%;
    background: none; /* Remove background overlay on mobile */
    margin-top: 20px; /* Space between image and text */
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 10px;
    color: #FFB04D;
  }
  .page-gdpr__description {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #FFF3E6;
  }

  /* Section and Container */
  .page-gdpr__section {
    padding: 30px 0;
    margin-bottom: 20px;
  }
  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-gdpr__text-block {
    font-size: 0.95rem;
  }
  .page-gdpr__list {
    margin-left: 20px;
  }
  .page-gdpr__list-item {
    font-size: 0.95rem;
  }

  /* Article Figure */
  .page-gdpr__article-figure {
    margin: 30px auto;
    padding: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__article-figure img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__figure-caption {
    font-size: 0.85rem;
  }

  /* Contact Details */
  .page-gdpr__contact-details {
    padding: 20px;
    margin: 30px auto;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__contact-details p {
    font-size: 0.95rem;
  }

  /* FAQ Section */
  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    padding: 15px;
  }
  .page-gdpr__faq-qtext {
    font-size: 0.95rem;
  }
  .page-gdpr__faq-toggle {
    font-size: 20px;
    width: 24px;
    margin-left: 10px;
  }
  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 15px 15px;
  }

  /* General image and button responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__btn-primary {
    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__hero-content .page-gdpr__btn-primary {
    margin-left: auto;
    margin-right: auto;
  }
  .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;
  }
}