.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #FFF5E1);
  background: var(--background, #B71C1C);
}

.page-gdpr__hero-section {
  padding-top: 10px; /* Rely on body padding-top from shared.css for header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #C91F17 0%, #E53935 100%);
  padding-bottom: 40px;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

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

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #FFF5E1;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-gdpr__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: rgba(255, 245, 225, 0.9);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for text on gold button */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

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

.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: #B71C1C; /* Background */
  color: #FFF5E1; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  border: 2px solid #F2B544; /* Border */
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-gdpr__btn-secondary:hover {
  background: #7A0E0E; /* Deep Red */
  border-color: #FFCC66; /* Glow */
}

.page-gdpr__content-section {
  padding: 60px 0;
}

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

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #FFF5E1; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-gdpr__text-block {
  font-size: 1.1rem;
  color: rgba(255, 245, 225, 0.85);
  margin-bottom: 25px;
  text-align: justify;
}

.page-gdpr__dark-bg {
  background: #B71C1C; /* Background */
  color: #FFF5E1; /* Text Main */
}

.page-gdpr__light-bg {
  background: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
}

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

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

.page-gdpr__card {
  background: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #7A0E0E;
}

.page-gdpr__card-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
}

.page-gdpr__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #F4D34D; /* Gold */
  margin-bottom: 15px;
}

.page-gdpr__card-text {
  font-size: 1rem;
  color: rgba(255, 245, 225, 0.8);
}

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

.page-gdpr__list li {
  background: rgba(122, 14, 14, 0.5); /* Deep Red with opacity */
  border-left: 5px solid #F4D34D; /* Gold */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1rem;
  color: #FFF5E1;
}

.page-gdpr__list li strong {
  color: #FFCC66; /* Glow */
}

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

.page-gdpr__image-item {
  text-align: center;
}

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

.page-gdpr__image-caption {
  font-size: 0.95rem;
  color: rgba(255, 245, 225, 0.7);
}

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

details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #7A0E0E; /* Deep Red */
  overflow: hidden;
  background: #D32F2F; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

details.page-gdpr__faq-item summary.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF5E1; /* Text Main */
  font-weight: 600;
}

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(122, 14, 14, 0.7); /* Deep Red with opacity */
}

.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
  color: #FFCC66; /* Glow */
}

.page-gdpr__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F4D34D; /* Gold */
  flex-shrink: 0;
  margin-left: 20px;
  width: 32px;
  text-align: center;
  line-height: 1;
}

details.page-gdpr__faq-item .page-gdpr__faq-answer {
  padding: 0 25px 25px;
  background: rgba(122, 14, 14, 0.5); /* Deep Red with opacity */
  border-radius: 0 0 12px 12px;
  color: rgba(255, 245, 225, 0.8);
  font-size: 1rem;
}

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

.page-gdpr__contact-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(180deg, #E53935 0%, #C91F17 100%);
}

.page-gdpr__contact-section .page-gdpr__section-title {
  color: #FFF5E1;
}

.page-gdpr__contact-section .page-gdpr__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  color: rgba(255, 245, 225, 0.9);
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 15px;
    line-height: 1.5;
  }

  /* HERO 主图区域 */
  .page-gdpr__hero-section {
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .page-gdpr__hero-image {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important; /* Allow natural aspect ratio */
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-gdpr__hero-description {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    margin-bottom: 25px;
  }

  /* 按钮与按钮容器 */
  .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-left: 15px !important;
    padding-right: 15px !important;
    margin-bottom: 15px; /* Add spacing between stacked buttons */
  }

  .page-gdpr__hero-content .page-gdpr__btn-primary {
    margin-bottom: 0; /* Last button in hero doesn't need bottom margin */
  }

  .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: 10px; /* Space between stacked buttons */
  }

  /* 通用图片与容器 */
  .page-gdpr__content-section {
    padding: 40px 0;
  }

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

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

  .page-gdpr__text-block {
    font-size: 1rem;
  }

  .page-gdpr__card {
    padding: 25px;
  }

  .page-gdpr__card-title {
    font-size: 1.2rem;
  }

  .page-gdpr__list li {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .page-gdpr__image-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__image-responsive {
    width: 100% !important;
    height: auto !important;
  }

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

  .page-gdpr__faq-qtext {
    font-size: 1rem;
  }

  .page-gdpr__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
    width: 28px;
  }

  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 18px 18px;
  }

  .page-gdpr__contact-section {
    padding: 60px 0;
  }
}

/* Medium screens (e.g., tablets) */
@media (min-width: 769px) and (max-width: 1024px) {
  .page-gdpr__hero-section {
    padding-bottom: 50px;
  }

  .page-gdpr__main-title {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  }

  .page-gdpr__hero-description {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  }

  .page-gdpr__content-section {
    padding: 70px 0;
  }

  .page-gdpr__section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
  }

  .page-gdpr__text-block {
    font-size: 1.05rem;
  }

  .page-gdpr__grid-3-cols {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .page-gdpr__grid-2-cols {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
  }

  .page-gdpr__card {
    padding: 25px;
  }

  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    padding: 16px 22px;
  }

  .page-gdpr__faq-qtext {
    font-size: 1.05rem;
  }

  .page-gdpr__faq-toggle {
    font-size: 26px;
    width: 30px;
  }

  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 22px 22px;
  }
}