.page-gdpr {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--background-color, #ffffff);
}

.page-gdpr__hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background-color: #26A9E0;
  color: #ffffff;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-content {
  max-width: 600px;
  text-align: left;
  z-index: 1;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-gdpr__hero-image-wrapper {
  flex-shrink: 0;
  z-index: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-gdpr__hero-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.page-gdpr__two-column-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
}

.page-gdpr__column-text {
  flex: 1;
}

.page-gdpr__column-image {
  flex: 1;
  min-width: 200px; /* Ensure image column has a minimum width */
}

.page-gdpr__image-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  max-width: 100%; /* Ensure button adapts to container */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
  margin-right: 15px;
}

.page-gdpr__btn-primary:hover {
  background-color: #d46a00;
  border-color: #d46a00;
}

.page-gdpr__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-gdpr__btn-secondary:hover {
  background-color: #f0f8ff;
  color: #1e87c0;
  border-color: #1e87c0;
}

.page-gdpr__button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
}

.page-gdpr__faq-section {
  background-color: #f8f8f8;
}

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

.page-gdpr__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #26A9E0;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: #f0f8ff;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px 20px 20px 20px;
}

.page-gdpr__contact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 40px;
  background-color: #f0f8ff;
}

.page-gdpr__cta-content {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.page-gdpr__contact-image-wrapper {
  flex: 1;
  min-width: 200px; /* Ensure image column has a minimum width */
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__hero-description {
    font-size: 1.1em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__two-column-layout {
    flex-direction: column;
    text-align: center;
  }
  .page-gdpr__column-text, .page-gdpr__column-image {
    flex: none;
    width: 100%;
  }
  .page-gdpr__hero-image-wrapper {
    display: none; /* Hide hero image on smaller screens if content is too crowded */
  }
  .page-gdpr__hero-section {
    padding: 60px 20px;
    flex-direction: column;
    text-align: center;
  }
  .page-gdpr__hero-content {
    text-align: center;
  }
  .page-gdpr__button-group {
    justify-content: center;
  }
}

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

  /* HERO 主图区域 */
  .page-gdpr__hero-section {
    padding: var(--header-offset, 120px) 15px 40px 15px; /* Use header offset if not set on body */
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .page-gdpr__hero-content {
    text-align: center;
    padding: 0 15px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-gdpr__hero-image-wrapper {
    display: none; /* Ensure hero image is hidden on mobile */
  }

  /* 产品展示图区域 - GDPR page does not have specific product display grid, applying general image rules */
  /* 通用图片与容器 */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__section,
  .page-gdpr__content-area,
  .page-gdpr__two-column-layout,
  .page-gdpr__contact-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column;
    gap: 30px;
  }

  .page-gdpr__column-image {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0;
  }

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

  .page-gdpr__text-block {
    font-size: 1em;
    line-height: 1.7;
  }

  .page-gdpr__list {
    margin-left: 15px;
    font-size: 1em;
  }

  /* 按钮与按钮容器 */
  .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: 12px 20px !important;
    margin-right: 0 !important; /* Remove margin-right for stacking */
  }

  .page-gdpr__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px !important;
  }

  /* 其他内容模块 (FAQ, Contact CTA) */
  .page-gdpr__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-gdpr__faq-answer {
    padding: 0 15px;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 10px 15px 15px 15px;
  }

  .page-gdpr__contact-cta {
    flex-direction: column;
    text-align: center;
    padding: 60px 15px;
  }
  .page-gdpr__cta-content {
    text-align: center;
  }
  .page-gdpr__contact-image-wrapper {
    width: 100%;
    padding: 0;
  }

  .page-gdpr__reverse-layout-mobile {
    flex-direction: column-reverse;
  }
}