/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #121212; /* Matches body background from shared.css */
  padding-top: 0; /* Assumes shared.css handles body padding-top for header offset */
}

.page-gdpr__hero-section {
  position: relative;
  padding: 80px 0;
  background-color: #1a1a1a;
  text-align: center;
  padding-top: 0; /* shared 已给 body 留白时用 0 */
  margin-top: 0;
}

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

.page-gdpr__hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: #121212;
}

.page-gdpr__section-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gdpr__section-title {
  font-size: 32px;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #8B0000;
  padding-bottom: 10px;
}

.page-gdpr__text-block {
  font-size: 16px;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

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

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

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-gdpr__contact-info p {
  margin-bottom: 10px;
  font-size: 16px;
  color: #e0e0e0;
}

.page-gdpr__contact-info a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__contact-info a:hover {
  color: #fff;
  text-decoration: underline;
}

/* FAQ Section */
.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #222222;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background-color: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-gdpr__faq-question:hover {
  background-color: #333333;
  border-color: #4a4a4a;
}

.page-gdpr__faq-question:active {
  background-color: #383838;
}

.page-gdpr__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none;
}

.page-gdpr__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #f0f0f0;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  background-color: #1a1a1a;
  color: #e0e0e0;
  border-radius: 0 0 5px 5px;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background-color: #1a1a1a;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg);
}

/* Call to Action Section */
.page-gdpr__call-to-action-section {
  background-color: #8B0000; /* Auxiliary color for CTA */
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-gdpr__cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__cta-title {
  font-size: 38px;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-gdpr__cta-description {
  font-size: 18px;
  margin-bottom: 40px;
}

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

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

.page-gdpr__btn-primary {
  background-color: #FFD700;
  color: #121212;
  border: 2px solid #FFD700;
}

.page-gdpr__btn-primary:hover {
  background-color: #f0c200;
  border-color: #f0c200;
  color: #121212;
}

.page-gdpr__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gdpr__btn-secondary:hover {
  background-color: #FFD700;
  color: #121212;
}

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

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 38px;
  }
  .page-gdpr__hero-description {
    font-size: 17px;
  }
  .page-gdpr__section-title {
    font-size: 28px;
  }
  .page-gdpr__cta-title {
    font-size: 34px;
  }
  .page-gdpr__cta-description {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-gdpr__hero-section {
    padding: 40px 0 !important;
    padding-top: 0 !important; /* shared 已给 body 留白时用 0 */
  }
  .page-gdpr__hero-container {
    padding: 0 15px;
  }
  .page-gdpr__hero-title {
    font-size: 28px !important;
    margin-bottom: 15px;
  }
  .page-gdpr__hero-description {
    font-size: 15px !important;
    margin-bottom: 25px;
  }
  .page-gdpr__hero-image {
    margin-top: 25px;
    border-radius: 4px;
  }

  /* 产品展示图区域 (此页面无此模块，但为满足必写清单，此处提供通用图片和容器规则) */
  /* 此页面 gdpr.html 不包含产品展示图区域 */

  /* 通用图片与容器 */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__section-container,
  .page-gdpr__cta-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden;
  }
  .page-gdpr__content-section {
    padding: 40px 0 !important;
  }
  .page-gdpr__section-title {
    font-size: 24px !important;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 8px;
  }
  .page-gdpr__text-block,
  .page-gdpr__list-item,
  .page-gdpr__contact-info p {
    font-size: 15px !important;
  }

  /* 按钮与按钮容器 */
  .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: 12px 20px !important;
    font-size: 16px !important;
  }
  .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 !important;
    padding-right: 15px !important;
    flex-direction: column !important; /* Force vertical stacking */
    gap: 15px !important;
  }
  
  /* 其他内容模块 (FAQ, CTA) */
  .page-gdpr__faq-question {
    padding: 15px !important;
    flex-wrap: wrap;
  }
  .page-gdpr__faq-question h3 {
    font-size: 16px !important;
    width: calc(100% - 40px);
  }
  .page-gdpr__faq-toggle {
    margin-left: 10px;
    width: 28px;
    height: 28px;
    font-size: 24px !important;
  }
  .page-gdpr__faq-answer {
    padding: 0 15px !important;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px !important;
  }
  .page-gdpr__call-to-action-section {
    padding: 50px 15px !important;
  }
  .page-gdpr__cta-title {
    font-size: 28px !important;
  }
  .page-gdpr__cta-description {
    font-size: 16px !important;
  }
}