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

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

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Max height for desktop hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

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

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

.page-gdpr__main-title {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #F3C54D; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #FFF1E8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
  color: #140C0C; /* Dark text for bright button */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 176, 74, 0.4);
}

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: #F3C54D; /* Gold */
  border: 2px solid #F3C54D; /* Gold */
  box-shadow: 0 4px 15px rgba(243, 197, 77, 0.2);
}

.page-gdpr__btn-secondary:hover {
  background: rgba(243, 197, 77, 0.1);
  transform: translateY(-2px);
}

/* Sections */
.page-gdpr__intro-section,
.page-gdpr__compliance-section,
.page-gdpr__cookies-section,
.page-gdpr__faq-section {
  padding: 60px 0;
  background-color: #140C0C; /* Background */
  color: #FFF1E8; /* Text Main */
}

.page-gdpr__rights-section,
.page-gdpr__data-security-section,
.page-gdpr__contact-section {
  padding: 60px 0;
  background-color: #2A1212; /* Card BG */
  color: #FFF1E8; /* Text Main */
}

.page-gdpr__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F3C54D; /* Gold */
}

.page-gdpr__sub-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F3C54D; /* Gold */
}

.page-gdpr__text-block {
  font-size: 17px;
  margin-bottom: 25px;
  line-height: 1.7;
  color: #FFF1E8;
}

.page-gdpr__text-block a {
  color: #FFB04A; /* Link color from button gradient */
  text-decoration: underline;
}

.page-gdpr__text-block a:hover {
  color: #D86A14;
}

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

.page-gdpr__content-image,
.page-gdpr__compliance-image {
  width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.page-gdpr__image-content-block .page-gdpr__text-block {
  width: 50%;
  margin-bottom: 0;
}

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

.page-gdpr__image-text-pair .page-gdpr__text-block {
  width: 50%;
  margin-bottom: 0;
}

.page-gdpr__compliance-image {
  width: 50%;
}

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

.page-gdpr__card {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  color: #FFF1E8; /* Text Main */
}

.page-gdpr__card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F3C54D; /* Gold */
}

.page-gdpr__card p {
  font-size: 16px;
  line-height: 1.7;
  color: #FFF1E8;
}

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

.page-gdpr__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.7;
  color: #FFF1E8;
}

.page-gdpr__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFB04A; /* Gold-ish for checkmark */
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

.page-gdpr__security-list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  gap: 30px;
}

.page-gdpr__security-item {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #FFF1E8;
}

.page-gdpr__security-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F3C54D; /* Gold */
}

.page-gdpr__security-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #FFF1E8;
}

.page-gdpr__cta-area {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #6A1E1E; /* Border */
  overflow: hidden;
  background: #2A1212; /* Card BG */
  color: #FFF1E8; /* Text Main */
}

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: #F3C54D; /* Gold */
  font-weight: bold;
  font-size: 18px;
}

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(243, 197, 77, 0.1); /* Slight hover effect */
}

.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3C54D; /* Gold */
}

.page-gdpr__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFB04A; /* Gold-ish for toggle */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-gdpr__faq-item .page-gdpr__faq-answer {
  padding: 0 25px 20px;
  background: #140C0C; /* Background */
  border-radius: 0 0 8px 8px;
  font-size: 16px;
  line-height: 1.7;
  color: #FFF1E8;
}

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

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 38px;
  }
  .page-gdpr__hero-description {
    font-size: 17px;
  }
  .page-gdpr__section-title {
    font-size: 32px;
  }
  .page-gdpr__sub-title {
    font-size: 22px;
  }
  .page-gdpr__text-block {
    font-size: 16px;
  }
  .page-gdpr__card-title {
    font-size: 20px;
  }
  .page-gdpr__card p {
    font-size: 15px;
  }
  .page-gdpr__list-item,
  .page-gdpr__security-item p {
    font-size: 15px;
  }
  .page-gdpr__faq-qtext {
    font-size: 17px;
  }
  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* HERO 主图区域 */
  .page-gdpr__hero-section {
    padding-top: 10px;
    padding-bottom: 40px;
  }
  .page-gdpr__hero-image-wrapper {
    max-height: 400px;
    margin-bottom: 20px;
  }
  .page-gdpr__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__main-title {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 15px;
  }
  .page-gdpr__hero-description {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* 通用图片与容器 */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__image-content-block,
  .page-gdpr__image-text-pair {
    flex-direction: column;
    gap: 20px;
  }
  .page-gdpr__image-content-block .page-gdpr__text-block,
  .page-gdpr__image-text-pair .page-gdpr__text-block {
    width: 100%;
  }
  .page-gdpr__content-image,
  .page-gdpr__compliance-image {
    width: 100%;
  }

  /* Sections */
  .page-gdpr__intro-section,
  .page-gdpr__compliance-section,
  .page-gdpr__cookies-section,
  .page-gdpr__faq-section,
  .page-gdpr__rights-section,
  .page-gdpr__data-security-section,
  .page-gdpr__contact-section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-gdpr__sub-title {
    font-size: 20px;
  }
  .page-gdpr__text-block {
    font-size: 15px;
  }

  /* Rights Grid */
  .page-gdpr__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__card {
    padding: 25px;
  }
  .page-gdpr__card-title {
    font-size: 18px;
  }
  .page-gdpr__card p {
    font-size: 14px;
  }

  /* Security List */
  .page-gdpr__security-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__security-item {
    padding: 20px;
  }
  .page-gdpr__security-title {
    font-size: 18px;
  }
  .page-gdpr__security-item p {
    font-size: 14px;
  }

  /* Lists */
  .page-gdpr__list-item {
    font-size: 15px;
    padding-left: 25px;
  }
  .page-gdpr__list-item::before {
    font-size: 18px;
  }

  /* FAQ Section */
  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-gdpr__faq-qtext {
    font-size: 16px;
  }
  .page-gdpr__faq-toggle {
    font-size: 24px;
    width: 24px;
  }
  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 20px 15px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: clamp(24px, 7vw, 32px);
  }
  .page-gdpr__hero-description {
    font-size: 14px;
  }
  .page-gdpr__section-title {
    font-size: 24px;
  }
  .page-gdpr__sub-title {
    font-size: 18px;
  }
  .page-gdpr__text-block {
    font-size: 14px;
  }
}