:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --cta-button-color: #EA7C07; /* Màu cho nút CTA chính */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --border-color: #e0e0e0;
  --background-light: #f9f9f9;
}

.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark); /* Default text color for light body background */
  background-color: var(--secondary-color); /* Default background if body background is unknown or light */
}

/* 🚨 HERO主图区域样式 */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  /* 🚨 页头由 shared 的 body { padding-top: var(--header-offset); } 承担；此处仅用小额顶距，禁止 var(--header-offset) 以免双倍空白 */
  padding-top: 10px;
  padding-bottom: 40px;
  background: linear-gradient(135deg, var(--primary-color), #4dbce9); /* Gradient background for hero section */
  color: var(--text-color-light);
}

.page-gdpr__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure full width within max-width */
}

.page-gdpr__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-gdpr__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-gdpr__main-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-color-light);
  /* 🚨 禁止写死过大字号，用 clamp 替代 */
  font-size: clamp(2em, 4vw, 2.8em);
}

.page-gdpr__intro-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--cta-button-color); /* Sử dụng màu cam cho CTA */
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%; /* 🚨 按钮响应式 */
  box-sizing: border-box; /* 🚨 按钮响应式 */
  white-space: normal; /* 🚨 按钮响应式 */
  word-wrap: break-word; /* 🚨 按钮响应式 */
}

.page-gdpr__cta-button:hover {
  background: #d46c06; /* Darker shade of CTA color */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-gdpr__section {
  padding: 60px 20px;
  text-align: center;
}

.page-gdpr__section--principles {
  background-color: var(--background-light);
}

.page-gdpr__section--rights {
  background: var(--primary-color);
  color: var(--text-color-light);
}

.page-gdpr__section--implementation {
  background-color: var(--secondary-color);
}

.page-gdpr__section--contact {
  background-color: var(--background-light);
}

.page-gdpr__section--faq {
  background-color: var(--secondary-color);
  padding-bottom: 80px;
}

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%; /* 🚨 Ensure full width within max-width */
  box-sizing: border-box; /* 🚨 Ensure full width within max-width */
}

.page-gdpr__section-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--primary-color);
  line-height: 1.3;
}
.page-gdpr__section--rights .page-gdpr__section-title {
  color: var(--text-color-light);
}

.page-gdpr__text-block {
  font-size: 1.05em;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}
.page-gdpr__section--rights .page-gdpr__text-block {
  color: rgba(255, 255, 255, 0.9);
}

/* Grid for principles and features */
.page-gdpr__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__card {
  background: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-color-dark); /* Ensure text color contrast */
  border: 1px solid var(--border-color); /* Add border for contrast */
}

.page-gdpr__section--rights .page-gdpr__card {
  background: rgba(255, 255, 255, 0.15); /* Slightly transparent white on dark background */
  color: var(--text-color-light);
  border-color: rgba(255, 255, 255, 0.3);
}

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

.page-gdpr__card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
  line-height: 1.4;
}
.page-gdpr__section--rights .page-gdpr__card-title {
  color: var(--text-color-light);
}

.page-gdpr__card p {
  font-size: 0.95em;
  color: var(--text-color-dark);
}
.page-gdpr__section--rights .page-gdpr__card p {
  color: rgba(255, 255, 255, 0.85);
}

/* List styles */
.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-gdpr__list li {
  background: var(--secondary-color);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: var(--text-color-dark);
  border-left: 5px solid var(--primary-color);
}
.page-gdpr__section--rights .page-gdpr__list li {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-color-light);
  border-left-color: var(--text-color-light);
}
.page-gdpr__list li strong {
  color: var(--primary-color);
}
.page-gdpr__section--rights .page-gdpr__list li strong {
  color: var(--text-color-light);
}


/* Feature Grid for Implementation */
.page-gdpr__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}