.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-color);
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  background-color: var(--bg-color);
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit hero image height for better content visibility */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensure image covers the area without distortion */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  margin-top: -100px; /* Pull content up slightly over the image for visual flow */
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__main-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__intro-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-gdpr__section {
  padding: 40px 20px;
  background-color: var(--bg-color);
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: var(--text-main);
}

.page-gdpr__section-title {
  font-size: 2.2rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-gdpr__sub-title {
  font-size: 1.6rem;
  color: var(--glow);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__paragraph {
  margin-bottom: 15px;
  color: var(--text-main);
}

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

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

.page-gdpr__list-item strong {
  color: var(--glow);
}

.page-gdpr__image-text-block,
.page-gdpr__text-image-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-gdpr__image-text-block .page-gdpr__image {
  flex: 1;
  max-width: 50%;
}

.page-gdpr__text-image-block .page-gdpr__image {
  flex: 1;
  max-width: 50%;
  order: 2; /* Image on right */
}

.page-gdpr__image-text-block .page-gdpr__text-content,
.page-gdpr__text-image-block .page-gdpr__text-content {
  flex: 1;
  max-width: 50%;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-gdpr__image--centered {
  margin: 30px auto;
  display: block;
  max-width: 80%;
}

.page-gdpr__contact-info {
  background-color: var(--deep-green);
  padding: 25px;
  border-radius: 8px;
  margin-top: 20px;
  border: 1px solid var(--border);
}

.page-gdpr__contact-info .page-gdpr__list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.page-gdpr__contact-info .page-gdpr__list-item {
  margin-bottom: 8px;
  color: var(--text-main);
}

.page-gdpr__contact-info a {
  color: var(--glow);
  text-decoration: none;
}

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

.page-gdpr__faq-item {
  background-color: var(--deep-green);
  border: 1px solid var(--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: var(--text-main);
  background-color: var(--card-bg);
  border-bottom: 1px solid var(--border);
}

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

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

.page-gdpr__faq-qtext {
  flex-grow: 1;
  color: var(--glow);
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  width: 20px;
  text-align: center;
  color: var(--glow);
}

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

.page-gdpr__faq-answer {
  padding: 15px 20px;
  color: var(--text-secondary);
  background-color: var(--deep-green);
}

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

.page-gdpr__faq-answer a {
  color: var(--glow);
  text-decoration: none;
}

.page-gdpr__faq-answer a:hover {
  text-decoration: underline;
}

/* Color Variables */
:root {
  --bg-color: #08160F;
  --card-bg: #11271B;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-gdpr__hero-section {
    padding-bottom: 20px;
  }

  .page-gdpr__hero-image-wrapper {
    max-height: 300px;
  }

  .page-gdpr__hero-content {
    margin-top: -50px;
    padding: 15px;
  }

  .page-gdpr__main-title {
    font-size: 1.8rem;
  }

  .page-gdpr__intro-text {
    font-size: 1rem;
  }

  .page-gdpr__section {
    padding: 20px 10px;
  }

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

  .page-gdpr__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-gdpr__sub-title {
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .page-gdpr__image-text-block,
  .page-gdpr__text-image-block {
    flex-direction: column;
    gap: 20px;
  }

  .page-gdpr__image-text-block .page-gdpr__image,
  .page-gdpr__text-image-block .page-gdpr__image,
  .page-gdpr__image-text-block .page-gdpr__text-content,
  .page-gdpr__text-image-block .page-gdpr__text-content {
    max-width: 100%;
    width: 100%;
  }

  .page-gdpr__text-image-block .page-gdpr__image {
    order: unset; /* Reset order for mobile */
  }

  .page-gdpr__image--centered {
    max-width: 95%;
  }

  /* Mobile image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !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__video-section {
    padding-top: 10px !important; /* body 已承担 --header-offset，此处禁止 var(--header-offset) */
  }

  /* Mobile button responsiveness */
  .page-gdpr__cta-button,
  .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-left: 15px;
    padding-right: 15px;
  }

  .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;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}