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

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #111111 0%, #0A0A0A 100%);
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-content {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.page-gdpr__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Use clamp for H1 font size */
  font-weight: 700;
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.6);
}

.page-gdpr__description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main */
}

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #111111; /* Dark text for bright button */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
}

.page-gdpr__container {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.page-gdpr__section-title {
  font-size: 2.2rem;
  color: #F2C14E; /* Primary color */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 2px solid #3A2A12; /* Border */
  padding-bottom: 10px;
}

.page-gdpr h2 {
  font-size: 2.2rem;
  color: #F2C14E; /* Primary color */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 2px solid #3A2A12; /* Border */
  padding-bottom: 10px;
}

.page-gdpr h3 {
  font-size: 1.8rem;
  color: #FFD36B; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.page-gdpr__list li strong {
  color: #F2C14E; /* Primary color */
}

.page-gdpr a {
  color: #FFD36B; /* Glow */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: #F2C14E; /* Primary color */
  text-decoration: underline;
}

.page-gdpr__image-text-block {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.page-gdpr__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__content-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.page-gdpr__contact-info {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-gdpr__contact-info p {
  margin-bottom: 10px;
}

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

.page-gdpr__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-gdpr__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  line-height: 1;
}

.page-gdpr__faq-answer {
  padding: 0 20px 20px 20px;
  color: #FFF6D6; /* Text Main */
  font-size: 1rem;
}

.page-gdpr details[open] > summary .page-gdpr__faq-toggle {
  content: '−';
}

.page-gdpr__cta-section {
  background-color: #111111; /* Card BG */
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid #3A2A12; /* Border */
}

.page-gdpr__cta-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Primary color */
  margin-bottom: 20px;
  text-shadow: 0 0 5px rgba(242, 193, 78, 0.5);
}

.page-gdpr__cta-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #FFF6D6; /* Text Main */
}

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

.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background: #111111; /* Card BG */
  color: #F2C14E; /* Primary color */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #F2C14E; /* Primary color border */
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-secondary:hover {
  background: #F2C14E; /* Primary color */
  color: #111111; /* Dark text */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

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

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    max-width: 700px;
  }

  .page-gdpr__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-gdpr__description,
  .page-gdpr p,
  .page-gdpr li {
    font-size: 1rem;
  }

  .page-gdpr__section-title,
  .page-gdpr h2 {
    font-size: 2rem;
  }

  .page-gdpr__cta-title {
    font-size: 2rem;
  }

  .page-gdpr__image-text-block {
    flex-direction: column;
    align-items: center;
  }

  .page-gdpr__image-text-block--reverse {
    flex-direction: column;
  }

  .page-gdpr__content-image {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-gdpr__hero-section {
    padding-top: 10px !important; /* Fixed small top padding */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-gdpr__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  /* 其他内容模块 */
  .page-gdpr__content-area {
    padding: 40px 15px;
  }

  .page-gdpr__section-title,
  .page-gdpr h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-gdpr h3 {
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-gdpr p,
  .page-gdpr li {
    font-size: 0.95rem;
  }

  .page-gdpr__list {
    margin-left: 20px;
  }

  .page-gdpr__image-text-block {
    gap: 20px;
  }

  .page-gdpr__contact-info {
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
  }

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

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

  .page-gdpr__cta-section {
    padding: 40px 15px;
  }

  .page-gdpr__cta-title {
    font-size: 2rem;
  }

  .page-gdpr__cta-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  /* 通用图片与容器 */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 按钮与按钮容器 */
  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px;
  }

  /* No product display section in this page, so no specific rules for it. */
}