/* Base styles for .page-gdpr */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #B71C1C; /* Custom background color for the page body */
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px;
  background: linear-gradient(180deg, #7A0E0E 0%, #B71C1C 100%); /* Deep Red to Background */
  color: #FFF5E1; /* Text Main */
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  height: 675px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

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

.page-gdpr__hero-content-wrapper {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.page-gdpr__main-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD86A; /* Gold tone for title */
}

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

.page-gdpr__content-section {
  padding: 60px 0;
  background: #ffffff; /* Default light background */
  color: #333333; /* Default dark text */
}

.page-gdpr__dark-section {
  background: #B71C1C; /* Background */
  color: #FFF5E1; /* Text Main */
}

.page-gdpr__light-bg {
  background: #ffffff;
  color: #333333;
}

.page-gdpr__dark-bg {
  background: #B71C1C;
  color: #FFF5E1;
}

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

.page-gdpr__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #C91F17; /* Main color */
}

.page-gdpr__section-title--light {
  color: #FFD86A; /* Gold for titles on dark background */
}

.page-gdpr__text-block {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}

.page-gdpr__text-block--light p,
.page-gdpr__text-block--light li {
  color: #FFF5E1; /* Text Main */
}

.page-gdpr__text-block a {
  color: #F4D34D; /* Gold */
  text-decoration: underline;
}

.page-gdpr__text-block a:hover {
  color: #FFCC66; /* Glow */
}

.page-gdpr__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-gdpr__bullet-list,
.page-gdpr__numbered-list {
  list-style-position: inside;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-gdpr__bullet-list li,
.page-gdpr__numbered-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-gdpr__bullet-list--light li,
.page-gdpr__numbered-list--light li {
  color: #FFF5E1;
}

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

.page-gdpr__contact-list li {
  margin-bottom: 15px;
  font-size: 17px;
  display: flex;
  align-items: center;
}

.page-gdpr__contact-list li strong {
  min-width: 100px;
  color: #FFD86A;
}

.page-gdpr__contact-list a {
  color: #F4D34D;
  text-decoration: underline;
}

.page-gdpr__contact-list a:hover {
  color: #FFCC66;
}

/* Buttons */
.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button custom gradient */
  color: #7A0E0E; /* Deep Red for text on gold button */
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__btn-secondary {
  background: #B71C1C; /* Background */
  color: #FFD86A; /* Gold */
  border: 2px solid #F2B544; /* Border custom */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn-secondary:hover {
  background: #7A0E0E; /* Deep Red */
  border-color: #FFCC66; /* Glow */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-gdpr__faq-section {
  padding: 60px 0;
  background: #B71C1C;
  color: #FFF5E1;
}

.page-gdpr__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #F2B544; /* Border custom */
  overflow: hidden;
  background: #D32F2F; /* Card BG */
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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;
  color: #FFD86A; /* Gold for question text */
  font-weight: 600;
}

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: rgba(255, 255, 255, 0.1);
}

.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}

.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFCC66; /* Glow */
  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: #7A0E0E; /* Deep Red for answer background */
  border-radius: 0 0 8px 8px;
  color: #FFF5E1; /* Text Main for answer text */
}

.page-gdpr__faq-answer p {
  margin-bottom: 0;
}

.page-gdpr__faq-answer a {
  color: #F4D34D;
  text-decoration: underline;
}

.page-gdpr__faq-answer a:hover {
  color: #FFCC66;
}

/* CTA Bottom Section */
.page-gdpr__cta-bottom {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, #B71C1C 0%, #7A0E0E 100%); /* Background to Deep Red */
  color: #FFF5E1;
}

.page-gdpr__cta-container {
  max-width: 900px;
}

.page-gdpr__cta-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD86A; /* Gold */
}

.page-gdpr__cta-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #FFF5E1;
}

.page-gdpr__cta-description a {
  color: #F4D34D;
  text-decoration: underline;
}

.page-gdpr__cta-description a:hover {
  color: #FFCC66;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 38px;
  }

  .page-gdpr__section-title {
    font-size: 32px;
  }

  .page-gdpr__hero-image-wrapper {
    height: 500px;
  }

  .page-gdpr__cta-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-gdpr__hero-section {
    padding: 10px 0 40px;
  }

  .page-gdpr__hero-image-wrapper {
    height: 300px;
    margin-bottom: 20px;
  }

  .page-gdpr__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__main-title {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 15px;
  }

  .page-gdpr__description {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 0 15px;
  }

  /* 内容区通用图片与容器 */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .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__content-section,
  .page-gdpr__faq-section,
  .page-gdpr__cta-bottom {
    padding: 40px 0;
  }

  .page-gdpr__section-title {
    font-size: clamp(24px, 7vw, 30px);
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .page-gdpr__text-block p,
  .page-gdpr__bullet-list li,
  .page-gdpr__numbered-list li {
    font-size: 15px;
  }

  .page-gdpr__contact-list li {
    font-size: 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .page-gdpr__contact-list li strong {
    min-width: unset;
    margin-bottom: 5px;
  }

  /* 按钮与按钮容器 */
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    padding: 0 15px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* FAQ */
  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    padding: 15px;
  }

  .page-gdpr__faq-qtext {
    font-size: 16px;
  }

  .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;
  }

  /* CTA Bottom */
  .page-gdpr__cta-title {
    font-size: clamp(26px, 7vw, 30px);
    margin-bottom: 15px;
    padding: 0 15px;
  }

  .page-gdpr__cta-description {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 0 15px;
  }

  /* No products grid on gdpr.html, so no need for specific __products-grid rules */
  /* No decorative h1/long text SEO on gdpr.html in the same way as homepage */
}

/* Ensure color contrast for dark background elements */
.page-gdpr__dark-bg {
  color: #FFF5E1; /* Light text for dark background */
}

.page-gdpr__light-bg {
  color: #333333; /* Dark text for light background */
}

.page-gdpr__text-block--light {
  color: #FFF5E1;
}

.page-gdpr__text-block--light p {
  color: #FFF5E1;
}

.page-gdpr__text-block--light a {
  color: #F4D34D;
}

.page-gdpr__text-block--light a:hover {
  color: #FFCC66;
}

.page-gdpr__card {
  background: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
  border: 1px solid #F2B544; /* Border custom */
}

.page-gdpr__dark-section {
  background: #B71C1C;
  color: #FFF5E1;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for contrast */
}

.page-gdpr__btn-secondary {
  background: #B71C1C;
  color: #FFD86A;
  border: 2px solid #F2B544;
}

/* No product display grid for gdpr.html */
/* No specific __section-title-wrap, __article-body, __article-figure for gdpr.html beyond general text block */