/* style/gdpr.css */
.page-gdpr {
  background-color: var(--background-color, #08160F);
  color: var(--text-main, #F2FFF6);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  padding-top: 10px; /* Small top padding, assuming body handles header offset */
  padding-bottom: 60px;
  background-color: var(--deep-green, #0A4B2C);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.page-gdpr__hero-text-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.page-gdpr__main-title {
  font-weight: 700;
  color: var(--gold, #F2C14E);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  font-size: clamp(2.5em, 4vw, 3.5em); /* Responsive font size for H1 */
}

.page-gdpr__description {
  font-size: 1.15em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main, #F2FFF6);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-gdpr__content-section {
  padding: 60px 20px;
  background-color: var(--background-color, #08160F);
  color: var(--text-main, #F2FFF6);
}

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: var(--gold, #F2C14E);
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: 600;
  border-bottom: 2px solid var(--divider, #1E3A2A);
  padding-bottom: 15px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.page-gdpr__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-secondary, #A7D9B8);
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-secondary, #A7D9B8);
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 1em;
}

.page-gdpr__inline-link {
  color: var(--glow, #57E38D);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__inline-link:hover {
  color: var(--gold, #F2C14E);
  text-decoration: underline;
}

.page-gdpr__cta-button {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Ensure all images are responsive and not smaller than 200px */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover; /* Ensures images cover their area without distortion */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-section {
    padding-bottom: 40px;
  }
  .page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3em);
  }
  .page-gdpr__description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__content-section {
    padding: 40px 15px;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-gdpr__hero-section {
    padding-top: 10px !important; /* Small top padding, as per requirements */
    padding-bottom: 30px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-gdpr__hero-content-wrapper {
    padding: 0;
  }
  .page-gdpr__hero-image {
    margin-bottom: 20px !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em) !important;
    margin-bottom: 15px !important;
  }
  .page-gdpr__description {
    font-size: 0.95em !important;
    margin-bottom: 20px !important;
  }
  
  /* 其他内容模块 (通用) */
  .page-gdpr__content-section {
    padding: 30px 0 !important;
  }
  .page-gdpr__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__section-title {
    font-size: 1.6em !important;
    margin-top: 30px !important;
    margin-bottom: 20px !important;
    padding-bottom: 10px !important;
  }
  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 0.95em !important;
    line-height: 1.5 !important;
  }
  .page-gdpr__list {
    margin-left: 20px !important;
  }

  /* 通用图片与容器 */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 按钮与按钮容器 */
  .page-gdpr__btn-primary,
  .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: 12px 20px !important;
    font-size: 1em !important;
    margin-left: 0 !important;
    margin-right: 0 !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-wrap: wrap !important;
    gap: 10px !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .page-gdpr__cta-button {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
}