.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default dark text for light body background */
}

.page-gdpr__hero-section {
  padding-top: 10px; /* Specific padding to avoid double header offset */
  padding-bottom: 60px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-gdpr__hero-image-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

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

.page-gdpr__hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333333;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background-color: #C30808; /* Register button color */
  color: #FFFF00; /* Register/Login font color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
}

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

.page-gdpr__section {
  padding: 80px 0;
}

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

.page-gdpr__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__introduction p,
.page-gdpr__user-rights p,
.page-gdpr__data-collection p,
.page-gdpr__data-security p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
}

.page-gdpr__our-commitment.page-gdpr__dark-bg,
.page-gdpr__data-collection.page-gdpr__dark-bg,
.page-gdpr__cta-section.page-gdpr__dark-bg {
  background-color: #017439;
  color: #ffffff; /* White text for dark background */
}

.page-gdpr__our-commitment .page-gdpr__section-title,
.page-gdpr__data-collection .page-gdpr__section-title,
.page-gdpr__cta-section .page-gdpr__section-title {
  color: #ffffff;
}

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

.page-gdpr__card {
  background-color: #ffffff; /* White background for cards on dark sections */
  color: #333333; /* Dark text for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-gdpr__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-gdpr__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #017439;
  margin-bottom: 15px;
}

.page-gdpr__card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.page-gdpr__rights-list,
.page-gdpr__data-list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333333;
}

.page-gdpr__rights-list li,
.page-gdpr__data-list li {
  margin-bottom: 10px;
}

.page-gdpr__data-collection .page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 800px;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__feature-item {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #017439;
  margin-bottom: 15px;
}

.page-gdpr__feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.page-gdpr__btn-secondary {
  display: inline-block;
  background-color: #ffffff;
  color: #017439;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 2px solid #017439;
  margin-top: 40px;
  box-sizing: border-box;
}

.page-gdpr__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
}

.page-gdpr__faq-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

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

.page-gdpr__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #017439;
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
}

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

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

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

.page-gdpr__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.page-gdpr__cta-section {
  text-align: center;
  padding: 80px 0;
}

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

.page-gdpr__cta-section p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Ensure all images are responsive */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure all buttons are responsive */
.page-gdpr__btn-primary,
.page-gdpr__btn-secondary,
.page-gdpr a[class*="button"],
.page-gdpr a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

/* Button containers responsive */
.page-gdpr__cta-buttons,
.page-gdpr__button-group,
.page-gdpr__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    margin-top: 30px;
  }
  .page-gdpr__main-title {
    font-size: 3rem;
  }
  .page-gdpr__hero-description {
    font-size: 1.1rem;
  }
  .page-gdpr__section-title {
    font-size: 2.2rem;
  }
  .page-gdpr__content-grid {
    gap: 20px;
  }
  .page-gdpr__security-features {
    gap: 20px;
  }
  .page-gdpr__faq-question {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-gdpr__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }
  .page-gdpr__main-title {
    font-size: 2.5rem !important;
    margin-bottom: 15px;
  }
  .page-gdpr__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  /* 其他内容模块 */
  .page-gdpr__section {
    padding: 50px 0;
  }
  .page-gdpr__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.8rem !important;
    margin-bottom: 30px;
  }
  .page-gdpr__introduction p,
  .page-gdpr__user-rights p,
  .page-gdpr__data-collection p,
  .page-gdpr__data-security p,
  .page-gdpr__rights-list,
  .page-gdpr__data-list,
  .page-gdpr__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* 产品展示图区域 (N/A for this page, but general rule) */
  .page-gdpr__content-grid,
  .page-gdpr__security-features {
    grid-template-columns: 1fr; /* Single column layout for cards/features */
    gap: 20px;
  }
  .page-gdpr__card,
  .page-gdpr__feature-item {
    padding: 25px;
  }
  .page-gdpr__card-image {
    height: 180px;
  }

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

  /* 按钮与按钮容器 */
  .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;
    font-size: 1rem;
  }
  .page-gdpr__cta-buttons,
  .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-direction: column !important; /* Stack buttons vertically */
    gap: 15px;
  }

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

  .page-gdpr__cta-section p {
    font-size: 1rem;
  }
}