.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  line-height: 1.6;
  background-color: var(--background-color, #FFFFFF);
}

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #26A9E0, #1a7bbd);
  color: #ffffff;
  padding-top: 0; /* Assuming shared.css handles body padding-top: var(--header-offset) */
  padding-bottom: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary:hover {
  background-color: #d16b06;
  transform: translateY(-2px);
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__subsection-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
  font-weight: bold;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.page-gdpr__inline-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__inline-link:hover {
  color: #1a7bbd;
  text-decoration: underline;
}

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

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

.page-gdpr__illustration-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-gdpr__text-content {
  flex: 1;
}

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

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

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

.page-gdpr__data-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-gdpr__data-card:hover {
  transform: translateY(-5px);
}

.page-gdpr__data-card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-gdpr__security-item {
  background: #f8f8f8;
  border-left: 5px solid #26A9E0;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__security-item-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__security-graphic {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  margin-bottom: 50px;
  object-fit: cover;
}

.page-gdpr__contact-info {
  background: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  text-align: center;
  font-size: 1.1em;
  color: #333333;
}

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

.page-gdpr__faq-section {
  padding: 60px 20px;
  background-color: #f0f8ff; /* Light background for FAQ */
  margin-top: 50px;
  border-radius: 10px;
}

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

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

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

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

.page-gdpr__faq-title {
  margin: 0;
  color: #26A9E0;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  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 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  font-size: 1.1em;
  color: #555555;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px 25px;
}

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

.page-gdpr__cta-banner {
  background: linear-gradient(90deg, #26A9E0, #1a7bbd);
  color: #ffffff;
  padding: 50px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  margin-bottom: 40px;
}

.page-gdpr__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

  .page-gdpr__hero-description,
  .page-gdpr__text-block,
  .page-gdpr__list li,
  .page-gdpr__faq-question,
  .page-gdpr__faq-answer {
    font-size: 1em;
  }

  .page-gdpr__section-title {
    font-size: 2em;
  }

  .page-gdpr__subsection-title {
    font-size: 1.6em;
  }

  .page-gdpr__data-card-title,
  .page-gdpr__security-item-title {
    font-size: 1.3em;
  }

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

  .page-gdpr__illustration-image {
    max-width: 80%;
    margin-bottom: 30px;
  }

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

  .page-gdpr__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-gdpr__hero-section {
    padding-top: 0 !important; /* Assuming shared.css handles body padding-top */
    padding-bottom: 50px;
  }

  .page-gdpr__hero-title {
    font-size: 2.2em !important;
  }

  .page-gdpr__hero-description {
    font-size: 1em !important;
  }

  /* 其他内容模块 */
  .page-gdpr__content-area,
  .page-gdpr__faq-section {
    padding: 30px 15px !important;
  }

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

  .page-gdpr__subsection-title {
    font-size: 1.4em !important;
    margin-top: 25px !important;
    margin-bottom: 15px !important;
  }

  .page-gdpr__text-block,
  .page-gdpr__list li,
  .page-gdpr__contact-info p,
  .page-gdpr__faq-question,
  .page-gdpr__faq-answer {
    font-size: 0.95em !important;
  }

  .page-gdpr__image-text-block,
  .page-gdpr__image-text-block--reverse {
    flex-direction: column !important;
    gap: 20px !important;
  }

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

  .page-gdpr__data-collection-grid,
  .page-gdpr__security-features {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-gdpr__data-card-title,
  .page-gdpr__security-item-title {
    font-size: 1.2em !important;
  }

  .page-gdpr__contact-info {
    padding: 20px !important;
  }

  /* 通用图片与容器 */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !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 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 !important;
    padding-right: 15px !important;
    margin-top: 10px;
  }
  
  .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-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column;
  }

  .page-gdpr__cta-banner {
    padding: 40px 15px !important;
  }

  .page-gdpr__cta-title {
    font-size: 1.8em !important;
  }

  .page-gdpr__cta-description {
    font-size: 1em !important;
  }
}