.page-gdpr {
  font-family: Arial, sans-serif;
  color: #F3F8FF; /* Text Main */
  background-color: #10233F; /* Card BG, as body background is var(--card-bg) */
}

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

.page-gdpr__hero-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(17, 59, 122, 0.7); /* #113B7A with transparency */
  border-radius: 10px;
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.15rem;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-gdpr__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
  color: #F3F8FF; /* Text Main */
  border: none;
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold */
}

.page-gdpr__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
}

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

.page-gdpr__section--intro {
  background-color: #08162B; /* Deep Navy */
}

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

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-gdpr__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #AFC4E8; /* Text Secondary */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__section--principles {
  background-color: #10233F; /* Card BG */
}

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

.page-gdpr__card {
  background-color: #08162B; /* Deep Navy */
  border: 1px solid #244D84; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F3F8FF;
}

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

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

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

.page-gdpr__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #AFC4E8; /* Text Secondary */
}

.page-gdpr__section--rights {
  background-color: #08162B; /* Deep Navy */
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-gdpr__list-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #F3F8FF; /* Text Main */
  transition: all 0.3s ease;
}

.page-gdpr__list-item:hover {
  background-color: #1B3357; /* Divider */
  transform: translateX(5px);
}

.page-gdpr__list-item strong {
  color: #F2C14E; /* Gold */
}

.page-gdpr__section--security {
  background-color: #10233F; /* Card BG */
}

.page-gdpr__grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-gdpr__grid-2-col--reverse {
  direction: rtl; /* For image left, text right */
}

.page-gdpr__grid-2-col--reverse > .page-gdpr__content-block {
  direction: ltr;
}

.page-gdpr__sub-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-height: 200px;
  min-width: 200px;
}

.page-gdpr__image--right {
  margin-left: auto;
}

.page-gdpr__image--left {
  margin-right: auto;
}

.page-gdpr__section--policies {
  background-color: #08162B; /* Deep Navy */
}

.page-gdpr__policy-links {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 30px auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-gdpr__policy-links li a {
  display: block;
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 8px;
  padding: 15px 20px;
  text-decoration: none;
  color: #F3F8FF; /* Text Main */
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.page-gdpr__policy-links li a:hover {
  background-color: #1B3357; /* Divider */
  color: #F2C14E; /* Gold */
  transform: translateX(3px);
}

.page-gdpr__cta-buttons--center {
  justify-content: center;
}

.page-gdpr__section--faq {
  background-color: #10233F; /* Card BG */
}

.page-gdpr__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #244D84; /* Border */
  overflow: hidden;
  background: #08162B; /* Deep Navy */
  color: #F3F8FF;
}

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: #1B3357; /* Divider */
}

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

.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F3F8FF; /* Text Main */
  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: #10233F; /* Card BG */
  border-radius: 0 0 5px 5px;
  color: #AFC4E8; /* Text Secondary */
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-gdpr__hero-description {
    font-size: 1rem;
  }
  .page-gdpr__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  }
  .page-gdpr__grid-2-col {
    gap: 30px;
  }
  .page-gdpr__sub-title {
    font-size: 1.4rem;
  }
  .page-gdpr__faq-qtext {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-gdpr__hero-section {
    padding-top: 10px; /* Small top padding for mobile */
    padding-bottom: 40px;
  }
  .page-gdpr__hero-image {
    object-fit: contain !important; /* 禁止 cover 裁切两侧 */
    aspect-ratio: unset !important;
    position: relative;
    height: auto; /* Allow height to adjust based on aspect ratio */
    max-height: 300px; /* Limit height to prevent excessive space */
  }
  .page-gdpr__hero-image-wrap {
    position: relative;
    height: auto;
  }
  .page-gdpr__hero-content {
    padding: 30px 15px;
    max-width: 100%;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-gdpr__hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  /* 按钮与按钮容器 */
  .page-gdpr__cta-buttons {
    flex-direction: column; /* 移动端垂直排列 */
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    font-size: 1rem;
    padding: 12px 20px;
  }

  /* 通用图片与容器 */
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-gdpr__text-block {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .page-gdpr__grid-3-col {
    grid-template-columns: 1fr; /* Một cột trên di động */
    gap: 20px;
  }
  .page-gdpr__card {
    padding: 20px;
  }
  .page-gdpr__card-title {
    font-size: 1.25rem;
  }
  .page-gdpr__card-text {
    font-size: 0.9rem;
  }
  .page-gdpr__list-item {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-gdpr__article-body {
    max-width: 100% !important;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-gdpr__grid-2-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-gdpr__grid-2-col--reverse {
    direction: ltr; /* Reset for mobile */
  }
  .page-gdpr__sub-title {
    font-size: 1.3rem;
  }
  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-left: 0;
    margin-right: 0;
  }

  .page-gdpr__policy-links li a {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    padding: 15px;
  }
  .page-gdpr__faq-qtext {
    font-size: 1rem;
  }
  .page-gdpr__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 15px 15px;
    font-size: 0.95rem;
  }

  /* Ensure all images are responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__content-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}