.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding as body handles header offset */
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #C91F17 0%, #7A0E0E 100%); /* Deep Red gradient for hero */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Subtle darkening for text readability */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-top: -150px; /* Overlap image slightly for visual effect */
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  color: #FFF5E1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__intro-text {
  font-size: 1.2em;
  color: #FFF5E1;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.page-gdpr__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
  color: #333333; /* Dark text for light gold button */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

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

.page-gdpr__btn--secondary {
  background: #C91F17; /* Primary brand color */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #F2B544; /* Border */
}

.page-gdpr__btn--secondary:hover {
  background: #E53935; /* Auxiliary color */
  border-color: #FFCC66; /* Glow */
  transform: translateY(-3px);
}

.page-gdpr__content-section,
.page-gdpr__principles-section,
.page-gdpr__data-collection-section,
.page-gdpr__data-usage-section,
.page-gdpr__security-measures-section,
.page-gdpr__rights-section,
.page-gdpr__cookie-policy-section,
.page-gdpr__faq-section,
.page-gdpr__final-cta-section {
  padding: 50px 0;
  background-color: #B71C1C; /* Background */
  color: #FFF5E1; /* Text Main */
}

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

.page-gdpr__section-title {
  font-size: clamp(2em, 4vw, 2.8em);
  color: #F4D34D; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.page-gdpr__card {
  background-color: #D32F2F; /* Card BG */
  color: #FFFFFF; /* White for better contrast on Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #7A0E0E; /* Deep Red border */
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #FFD86A; /* Lighter gold for card titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__card-text {
  font-size: 1em;
  line-height: 1.5;
}

.page-gdpr__data-list ul,
.page-gdpr__rights-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-gdpr__data-list ul li,
.page-gdpr__rights-list li {
  background-color: #7A0E0E; /* Deep Red for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.page-gdpr__data-list ul li::before,
.page-gdpr__rights-list li::before {
  content: '✓';
  color: #FFD86A; /* Gold checkmark */
  font-weight: bold;
  font-size: 1.2em;
  flex-shrink: 0;
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: #F4D34D; /* Gold */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__data-list strong {
  color: #FFD86A;
}

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

.page-gdpr__usage-item,
.page-gdpr__security-item {
  background-color: #D32F2F; /* Card BG */
  color: #FFFFFF; /* White text */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #7A0E0E; /* Deep Red border */
}

.page-gdpr__security-icon {
  max-width: 100px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
}

.page-gdpr__cookie-policy-section .page-gdpr__text-block {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #F2B544; /* Border */
  overflow: hidden;
  background: #C91F17; /* Primary brand color for FAQ item */
}

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: #E53935; /* Auxiliary color on hover */
}

.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF5E1; /* Text Main */
}

.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD86A; /* Gold toggle */
  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 5px 5px;
}

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

.page-gdpr__final-cta-section {
  padding-bottom: 80px;
}

/* General image responsiveness */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    margin-top: -100px;
  }
  .page-gdpr__main-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }
  .page-gdpr__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
  }
  .page-gdpr__usage-grid,
  .page-gdpr__security-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-gdpr__hero-section {
    padding-bottom: 30px;
  }
  .page-gdpr__hero-image-wrapper {
    max-height: 400px;
  }
  .page-gdpr__hero-image {
    object-fit: contain !important; /* Mobile: prevent cropping */
    aspect-ratio: unset !important;
  }
  .page-gdpr__hero-content {
    margin-top: -80px; /* Adjust overlap */
    padding: 0 15px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em); /* More aggressive clamp for mobile H1 */
  }
  .page-gdpr__intro-text {
    font-size: 1em;
  }
  
  /* 按钮与按钮容器 */
  .page-gdpr__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-gdpr__btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  /* 通用图片与容器 */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__container,
  .page-gdpr__content-section,
  .page-gdpr__principles-section,
  .page-gdpr__data-collection-section,
  .page-gdpr__data-usage-section,
  .page-gdpr__security-measures-section,
  .page-gdpr__rights-section,
  .page-gdpr__cookie-policy-section,
  .page-gdpr__faq-section,
  .page-gdpr__final-cta-section,
  .page-gdpr__card,
  .page-gdpr__usage-item,
  .page-gdpr__security-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__grid,
  .page-gdpr__usage-grid,
  .page-gdpr__security-grid {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 20px;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-gdpr__section-title {
    font-size: clamp(1.5em, 6vw, 2.2em);
    margin-bottom: 30px;
  }
  .page-gdpr__sub-title {
    font-size: 1.5em;
  }
  .page-gdpr__text-block {
    font-size: 0.95em;
    text-align: left; /* Align text left on mobile for readability */
  }
  .page-gdpr__data-list ul li,
  .page-gdpr__rights-list li {
    padding: 12px 15px;
    font-size: 0.95em;
  }

  /* FAQ section */
  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    padding: 15px;
  }
  .page-gdpr__faq-qtext {
    font-size: 1em;
  }
  .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;
  }
}