.page-gdpr__hero-section {
  padding-top: 10px; /* Small top padding, relying on body padding-top from shared.css */
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-gdpr__subtitle {
  font-size: clamp(1em, 1.8vw, 1.25em);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  color: #f0f0f0;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__content-area {
  padding: 60px 0;
  background: #F5F7FA;
  color: #333333;
}

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

.page-gdpr__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 700;
  color: #E53935;
  margin-bottom: 30px;
  text-align: center;
}

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

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

.page-gdpr__feature-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, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gdpr__feature-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-gdpr__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #333333;
  margin-bottom: 10px;
}

.page-gdpr__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-gdpr__list-item {
  background: #FFFFFF;
  border-left: 5px solid #E53935;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  line-height: 1.6;
  color: #333333;
}

.page-gdpr__list-item strong {
  color: #E53935;
}

.page-gdpr__image-text-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  background: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-gdpr__image-text-block:nth-child(even) {
  flex-direction: row-reverse;
}

.page-gdpr__content-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-gdpr__text-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #E53935;
  margin-bottom: 15px;
}

.page-gdpr__text-description {
  font-size: 1.05em;
  line-height: 1.7;
  color: #555555;
}

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

.page-gdpr__btn-secondary {
  background: #FFFFFF;
  color: #E53935;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #E53935;
  display: inline-block;
  cursor: pointer;
}

.page-gdpr__btn-secondary:hover {
  background: #E53935;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__faq-section {
  background: #E53935;
  padding: 60px 0;
  color: #ffffff;
}

.page-gdpr__faq-section .page-gdpr__section-title {
  color: #ffffff;
}

details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

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

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

.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #ffffff;
}

.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  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: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 5px 5px;
  color: #f0f0f0;
}

.page-gdpr__faq-answer p {
  margin-top: 0;
  font-size: 1em;
  line-height: 1.6;
}

.page-gdpr__closing-cta {
  padding: 60px 0;
  background: #F5F7FA;
  text-align: center;
  color: #333333;
}

.page-gdpr__closing-cta .page-gdpr__section-title {
  color: #E53935;
}

/* General image styling to prevent small icons */
.page-gdpr img {
  min-width: 200px;
  min-height: 200px;
  display: block;
  max-width: 100%;
  height: auto;
}

/* Mobile Responsive Styles (max-width: 768px) */
@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-gdpr__hero-section {
    min-height: 400px;
    padding-top: 10px; /* Rely on body padding-top */
  }

  .page-gdpr__hero-image {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important;
    filter: brightness(0.5);
  }

  .page-gdpr__hero-content {
    padding: 60px 15px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

  .page-gdpr__subtitle {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  .page-gdpr__container {
    padding: 0 15px;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 20px;
  }

  .page-gdpr__text-block {
    font-size: 0.95em;
    text-align: left;
  }

  /* 产品展示图区域 (GDPR page doesn't have a product grid, but general grid needs mobile rules) */
  .page-gdpr__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__feature-card {
    padding: 20px;
  }

  .page-gdpr__feature-image {
    max-width: 250px;
    margin-bottom: 15px;
  }

  .page-gdpr__feature-title {
    font-size: 1.3em;
  }

  .page-gdpr__list-item {
    font-size: 0.95em;
    padding: 12px 15px;
  }

  .page-gdpr__image-text-block {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .page-gdpr__image-text-block:nth-child(even) {
    flex-direction: column;
  }

  .page-gdpr__content-image {
    min-width: unset;
    width: 100%;
  }

  .page-gdpr__text-title {
    font-size: 1.5em;
    text-align: center;
  }

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

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    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;
    text-align: center;
  }

  .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;
    overflow: hidden;
  }

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

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

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

  .page-gdpr__faq-answer p {
    font-size: 0.95em;
  }

  .page-gdpr__content-area,
  .page-gdpr__faq-section,
  .page-gdpr__closing-cta {
    padding: 40px 0;
  }
}

/* Mobile Responsive Styles (max-width: 849px) for Hero Image */
@media (max-width: 849px) {
  .page-gdpr__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }
}