.page-gdpr {
  background-color: #08160F; /* Nền chính */
  color: #F2FFF6; /* Màu chữ chính */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Padding top nhỏ, padding bottom để tách khỏi phần tiếp theo */
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-gdpr__hero-content {
  max-width: 800px;
  text-align: center;
  padding: 40px 20px;
  margin-top: -100px; /* Kéo nội dung lên trên hình ảnh một chút */
  position: relative; /* Đảm bảo nội dung không bị che bởi hình ảnh */
  z-index: 1; /* Đặt z-index cao hơn hình ảnh */
  background: rgba(8, 22, 15, 0.8); /* Nền mờ để chữ dễ đọc hơn */
  border-radius: 10px;
  padding-top: 120px; /* Bù lại phần kéo lên */
}

.page-gdpr__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  color: #F2C14E; /* Màu vàng Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__intro-text {
  font-size: 1.1rem;
  color: #A7D9B8; /* Màu chữ phụ */
  margin-bottom: 30px;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Màu Divider */
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

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

.page-gdpr__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Màu vàng Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__section-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Màu chữ phụ */
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-gdpr__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-gdpr__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl; /* Đảo ngược thứ tự cột */
  }
  .page-gdpr__content-grid--reverse .page-gdpr__text-block {
    direction: ltr; /* Khôi phục hướng văn bản */
  }
  .page-gdpr__content-grid--reverse .page-gdpr__image-wrapper {
    direction: ltr;
  }
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
  color: #F2FFF6; /* Màu chữ chính */
}

.page-gdpr__text-block strong {
  color: #F2C14E;
}

.page-gdpr__image-wrapper {
  text-align: center;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto; /* Center the image */
}

.page-gdpr__subsection-title {
  font-size: 1.8rem;
  color: #57E38D; /* Màu Glow */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Màu chữ chính */
}

.page-gdpr__list li {
  margin-bottom: 10px;
  color: #F2FFF6;
}

.page-gdpr__list li strong {
  color: #F2C14E;
}

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

.page-gdpr__card {
  background-color: #11271B; /* Màu Card BG */
  border: 1px solid #2E7A4E; /* Màu Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
}

.page-gdpr__card-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Màu vàng Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__card p {
  color: #A7D9B8; /* Màu chữ phụ */
  font-size: 1rem;
}

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

.page-gdpr__right-item {
  background-color: #0A4B2C; /* Màu Deep Green */
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__right-title {
  font-size: 1.4rem;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__right-item p {
  color: #F2FFF6;
  font-size: 0.95rem;
}

.page-gdpr__action-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  color: #A7D9B8;
}

.page-gdpr__action-text a {
  color: #57E38D;
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__faq-section {
  padding-bottom: 80px;
}

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

.page-gdpr__faq-item {
  background-color: #11271B; /* Màu Card BG */
  border: 1px solid #2E7A4E; /* Màu Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  color: #F2FFF6; /* Màu chữ chính */
  font-weight: bold;
  transition: background-color 0.3s ease;
  list-style: none; /* Hide default marker for summary */
}

.page-gdpr__faq-item[open] > .page-gdpr__faq-question {
  background-color: #0A4B2C; /* Màu Deep Green */
}

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

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

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Màu Glow */
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Màu chữ phụ */
}

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

.page-gdpr__faq-answer a {
  color: #57E38D;
  text-decoration: none;
}

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

.page-gdpr__contact-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-gdpr__contact-image {
  margin-top: 40px;
  max-width: 600px; /* Adjust size for contact image */
}

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Màu nút */
  color: #F2FFF6; /* Màu chữ nút */
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__closing-statement {
  font-size: 1.1rem;
  color: #A7D9B8;
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__policy-updates strong {
  color: #F2C14E;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-content {
    margin-top: -60px;
    padding-top: 80px;
  }

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

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

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

  .page-gdpr__section-description {
    font-size: 1rem;
  }

  .page-gdpr__subsection-title {
    font-size: 1.5rem;
  }

  .page-gdpr__cards-grid, .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__card, .page-gdpr__right-item {
    padding: 20px;
  }

  .page-gdpr__card-title, .page-gdpr__right-title {
    font-size: 1.3rem;
  }

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

  .page-gdpr__faq-toggle {
    font-size: 1.3rem;
  }

  .page-gdpr__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-gdpr__btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-gdpr__content-grid {
    grid-template-columns: 1fr; /* Stack columns on mobile */
  }
  .page-gdpr__content-grid--reverse {
    direction: ltr; /* Reset direction for mobile */
  }

  /* Mobile responsive images */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__hero-content,
  .page-gdpr__data-collection,
  .page-gdpr__data-protection,
  .page-gdpr__user-rights,
  .page-gdpr__cookies-policy,
  .page-gdpr__faq-section,
  .page-gdpr__contact-section,
  .page-gdpr__policy-updates {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Mobile responsive buttons */
  .page-gdpr__btn-primary,
  .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;
  }

  /* Override hero content padding for mobile to be less extreme */
  .page-gdpr__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}