.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #ffffff; /* Assuming default body background is white */
}

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

.page-gdpr__hero-section {
  padding-top: 10px; /* Small top padding, assuming shared.css handles body padding */
  padding-bottom: 40px;
  text-align: center;
  background: linear-gradient(180deg, #B71C1C 0%, #7A0E0E 100%);
  color: #FFF5E1; /* Creamy White text for dark background */
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  margin-bottom: 20px;
}

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

.page-gdpr__main-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFD86A; /* Gold color for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF5E1;
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-gdpr__dark-section {
  background: linear-gradient(180deg, #C91F17 0%, #B71C1C 100%);
  color: #FFF5E1;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #C91F17; /* Primary color for section titles on light background */
}

.page-gdpr__dark-section .page-gdpr__section-title {
  color: #FFD86A; /* Gold for titles on dark background */
}

.page-gdpr__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-gdpr__dark-section .page-gdpr__section-description {
  color: #FFF5E1;
}

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

.page-gdpr__card {
  background-color: #D32F2F; /* Card BG color */
  color: #FFF5E1; /* Text Main for dark card background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD86A; /* Gold color for card titles */
}

.page-gdpr__card-text {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF5E1;
}

.page-gdpr__rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.page-gdpr__rights-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF5E1;
}

.page-gdpr__rights-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFD86A;
}

.page-gdpr__rights-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #FFF5E1;
}

.page-gdpr__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%; /* Ensure buttons adapt to width */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red text for gold button */
  border: none;
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn-secondary {
  background-color: #ffffff;
  color: #C91F17; /* Primary color text for white button */
  border: 2px solid #C91F17;
}

.page-gdpr__btn-secondary:hover {
  background-color: #f5f5f5;
  border-color: #E53935;
  color: #E53935;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__security-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-gdpr__security-text-block {
  flex: 1;
}

.page-gdpr__security-image-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-gdpr__security-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__sub-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #C91F17; /* Primary color for sub-titles */
}

.page-gdpr__dark-section .page-gdpr__sub-title {
  color: #FFD86A; /* Gold for sub-titles on dark background */
}

.page-gdpr__security-text-block p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555555;
}

.page-gdpr__dark-section .page-gdpr__security-text-block p {
  color: #FFF5E1;
}

.page-gdpr__contact-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-gdpr__contact-info {
  flex: 2;
}

.page-gdpr__contact-info a {
  color: #FFD86A; /* Gold for links on dark background */
  text-decoration: underline;
}

.page-gdpr__contact-info a:hover {
  color: #F4D34D;
}

.page-gdpr__contact-image {
  flex: 1;
}

.page-gdpr__contact-image-item {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__resource-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-top: 20px;
  color: #FFF5E1;
}

.page-gdpr__resource-list li {
  margin-bottom: 8px;
}

.page-gdpr__faq-section {
  background-color: #f8f8f8;
}

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

.page-gdpr__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  color: #333333;
  background-color: #fefefe;
  border-bottom: 1px solid #eee;
  list-style: none; /* For details/summary */
}

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

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  background-color: #f5f5f5;
  border-bottom-color: #ddd;
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
  color: #C91F17; /* Primary color for FAQ questions */
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  font-weight: 500;
  margin-left: 15px;
  color: #C91F17;
}

.page-gdpr__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-gdpr__faq-answer p {
  margin-bottom: 10px;
}

.page-gdpr__faq-image {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__faq-image-item {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__cta-bottom {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, #E53935 0%, #C91F17 100%);
  color: #FFF5E1;
}

.page-gdpr__cta-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD86A; /* Gold for CTA title */
}

.page-gdpr__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF5E1;
}

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

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

  .page-gdpr__sub-title {
    font-size: 1.4em;
  }

  .page-gdpr__security-content,
  .page-gdpr__contact-grid {
    flex-direction: column;
    gap: 30px;
  }

  .page-gdpr__security-image-block {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-gdpr__security-image,
  .page-gdpr__contact-image-item {
    max-width: 48%;
  }

  .page-gdpr__button-group {
    flex-direction: column;
    align-items: center;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 80%;
  }

  .page-gdpr__cta-title {
    font-size: 2em;
  }
}

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

  .page-gdpr__container {
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

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

  /* 其他内容模块 */
  .page-gdpr__section {
    padding: 40px 0;
  }

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

  .page-gdpr__section-description {
    font-size: 0.95em !important;
  }

  .page-gdpr__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__card-title {
    font-size: 1.2em !important;
  }

  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__rights-title {
    font-size: 1.1em !important;
  }

  .page-gdpr__rights-text {
    font-size: 0.9em !important;
  }

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

  .page-gdpr__security-image-block {
    flex-direction: column;
    align-items: center;
  }

  .page-gdpr__security-image {
    max-width: 100%;
    width: 100%;
  }

  /* 按钮与按钮容器 */
  .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__button-group,
  .page-gdpr__cta-bottom .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important; /* For button groups */
    gap: 10px; /* Space between buttons */
  }

  .page-gdpr__faq-question {
    padding: 15px 20px;
    font-size: 1em !important;
  }

  .page-gdpr__faq-answer {
    padding: 10px 20px 15px 20px;
    font-size: 0.95em !important;
  }

  .page-gdpr__cta-title {
    font-size: 1.8em !important;
  }

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