.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Sử dụng màu Text Main */
  background-color: var(--background); /* Sử dụng màu Background */
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Nhỏ gọn để không bị đè bởi header, body đã có padding-top */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #08160F 0%, #11271B 100%); /* Nền gradient từ màu Background và Card BG */
  overflow: hidden;
}

.page-gdpr__hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  padding: 0 20px;
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* H1 font-size clamp */
  font-weight: 700;
  color: var(--text-main); /* Sử dụng màu Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__description {
  font-size: 1.1em;
  color: var(--text-secondary); /* Sử dụng màu Text Secondary */
  margin-bottom: 30px;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Đảm bảo nút không tràn */
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Màu nút chính */
  color: #ffffff;
  border: none;
}

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: var(--text-main); /* Màu Text Main */
  border: 2px solid var(--border); /* Màu Border */
}

.page-gdpr__btn-secondary:hover {
  background: rgba(var(--border-rgb), 0.2);
  transform: translateY(-2px);
}

.page-gdpr__content-section {
  padding: 60px 20px;
  background-color: var(--background); /* Sử dụng màu Background */
  color: var(--text-main); /* Sử dụng màu Text Main */
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: var(--text-main); /* Sử dụng màu Text Main */
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
}

.page-gdpr__text-block {
  background-color: var(--card-b-g); /* Sử dụng màu Card BG */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
  color: var(--text-secondary); /* Sử dụng màu Text Secondary */
  font-size: 1.05em;
}

.page-gdpr__text-block p:last-child {
  margin-bottom: 0;
}

.page-gdpr__text-block a {
  color: var(--gold); /* Sử dụng màu Gold cho link trong text block */
  text-decoration: underline;
}

.page-gdpr__text-block a:hover {
  color: var(--glow); /* Màu Glow khi hover */
}

.page-gdpr__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  display: block;
}

.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr__faq-item {
  background-color: var(--card-b-g); /* Sử dụng màu Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: var(--text-main); /* Sử dụng màu Text Main */
  font-weight: bold;
  font-size: 1.1em;
  border-bottom: 1px solid var(--divider); /* Màu Divider */
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  background-color: var(--deep-green); /* Màu Deep Green khi mở */
}

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

.page-gdpr__faq-qtext {
  flex-grow: 1;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: var(--glow); /* Màu Glow */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  padding: 15px 25px 20px;
  color: var(--text-secondary); /* Sử dụng màu Text Secondary */
  font-size: 1em;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-gdpr__hero-image {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-content {
    margin-bottom: 30px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-gdpr__description {
    font-size: 1em;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-gdpr__content-section {
    padding: 40px 15px;
  }

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

  .page-gdpr__text-block {
    padding: 20px;
  }

  .page-gdpr__image-full-width {
    margin: 30px 0;
  }

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

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

  /* Responsive images */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__hero-container,
  .page-gdpr__content-section,
  .page-gdpr__container,
  .page-gdpr__text-block,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  
  .page-gdpr__hero-container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-gdpr__hero-image {
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
  }
}

/* Custom Colors */
:root {
  --main-color: #11A84E;
  --accent-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-b-g: #11271B;
  --background: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
  
  --border-rgb: 46, 122, 78; /* RGB for --border */
}