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

.page-gdpr__section-spacing {
  padding: 60px 0;
}

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

.page-gdpr__hero-section {
  position: relative;
  padding-top: 10px; /* Fixed header spacing */
  padding-bottom: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  margin-bottom: 40px;
}

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

.page-gdpr__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FF8C1A; /* Main color for emphasis */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 140, 26, 0.4);
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-gdpr__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #FF8C1A; /* Main color */
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__text-block {
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-gdpr__dark-section {
  background-color: #17191F; /* Card BG */
  padding: 60px 0;
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #FFF3E6;
}

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

.page-gdpr__security-layout, .page-gdpr__rights-layout, .page-gdpr__contact-layout {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-gdpr__security-content, .page-gdpr__rights-content, .page-gdpr__contact-content {
  flex: 1;
}

.page-gdpr__security-image-wrapper, .page-gdpr__rights-image-wrapper, .page-gdpr__contact-image-wrapper {
  flex: 0 0 45%;
  max-width: 45%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__security-image, .page-gdpr__rights-image, .page-gdpr__contact-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-gdpr__rights-layout {
  flex-direction: row-reverse; /* Image on left, content on right */
}

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

.page-gdpr__faq-item {
  background-color: #0D0E12; /* Background */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  color: #FFF3E6;
  background-color: #17191F; /* Card BG */
  list-style: none; /* Hide default details marker */
}

.page-gdpr__faq-question::-webkit-details-marker {
  display: none;
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FF8C1A;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: '−';
}

.page-gdpr__faq-answer {
  padding: 15px 20px;
  color: #FFF3E6;
  border-top: 1px solid #A84F0C;
}

.page-gdpr__contact-info {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr__contact-item {
  margin-bottom: 10px;
  color: #FFF3E6;
}

.page-gdpr__contact-link {
  color: #FFA53A;
  text-decoration: none;
}

.page-gdpr__contact-link:hover {
  text-decoration: underline;
}

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

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

  .page-gdpr__security-layout, .page-gdpr__rights-layout, .page-gdpr__contact-layout {
    flex-direction: column;
    text-align: center;
  }

  .page-gdpr__security-image-wrapper, .page-gdpr__rights-image-wrapper, .page-gdpr__contact-image-wrapper {
    max-width: 80%;
    margin: 20px auto;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

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

  .page-gdpr__hero-image-wrapper {
    max-height: 300px !important;
    margin-bottom: 20px !important;
  }

  .page-gdpr__main-title {
    font-size: 2em !important;
    line-height: 1.3 !important;
  }

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

  .page-gdpr__section-spacing {
    padding: 40px 0 !important;
  }

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

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

  /* 通用图片与容器 */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__hero-image,
  .page-gdpr__security-image,
  .page-gdpr__rights-image,
  .page-gdpr__contact-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__security-image-wrapper,
  .page-gdpr__rights-image-wrapper,
  .page-gdpr__contact-image-wrapper,
  .page-gdpr__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto 20px auto !important;
  }

  /* 按钮与按钮容器 */
  .page-gdpr__cta-button {
    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;
    font-size: 0.9em !important;
  }

  /* 其他内容模块 */
  .page-gdpr__faq-question {
    padding: 12px 15px !important;
    font-size: 0.95em !important;
  }

  .page-gdpr__faq-answer {
    padding: 12px 15px !important;
    font-size: 0.9em !important;
  }

  .page-gdpr__list {
    margin-left: 20px !important;
  }

  .page-gdpr__list-item {
    font-size: 0.95em !important;
  }

  .page-gdpr__contact-item {
    font-size: 0.95em !important;
  }
}