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

.page-gdpr a {
  color: #57E38D; /* Màu liên kết */
  text-decoration: none;
}

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

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

.page-gdpr__section {
  padding: 60px 0;
  text-align: center;
}

.page-gdpr__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-gdpr__light-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  font-weight: bold;
  color: #F2FFF6;
  line-height: 1.2;
}

.page-gdpr__section-title--dark {
  color: #F2FFF6;
}

.page-gdpr__text-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__text-block p {
  margin-bottom: 1em;
}

.page-gdpr__list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 1.5em;
  color: #A7D9B8;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__list li {
  margin-bottom: 0.5em;
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding for aesthetic */
  overflow: hidden;
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  z-index: 1;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 10px;
  margin-top: -100px; /* Pull up over the image slightly for visual interest */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__description {
  font-size: 1.2em;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-gdpr__btn-secondary {
  background-color: transparent;
  color: #57E38D;
  border: 2px solid #57E38D;
  margin-left: 20px;
}

.page-gdpr__btn-secondary:hover {
  background-color: #57E38D;
  color: #08160F;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(87, 227, 141, 0.4);
}

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

/* FAQ Section */
.page-gdpr__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-gdpr__faq-item {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-gdpr__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D;
}

.page-gdpr__faq-answer {
  padding: 15px 25px 25px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: left;
  line-height: 1.8;
}

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

.page-gdpr__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Floating Buttons */
.page-gdpr__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-gdpr__floating-btn {
  display: block;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  color: #F2FFF6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap; /* Prevent text wrapping for floating buttons */
}

.page-gdpr__floating-btn--register {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-gdpr__floating-btn--register:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-gdpr__floating-btn--login {
  background-color: #0A4B2C; /* Deep Green */
}

.page-gdpr__floating-btn--login:hover {
  background-color: #1E3A2A; /* Divider */
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    margin-top: -50px;
  }
}

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

  .page-gdpr__section {
    padding: 40px 0;
  }

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

  .page-gdpr__text-block {
    padding: 0 15px;
    font-size: 1em;
  }

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

  .page-gdpr__hero-section {
    min-height: 400px;
    padding-bottom: 40px;
  }

  .page-gdpr__hero-image-wrapper {
    min-height: 400px;
  }

  .page-gdpr__hero-content {
    margin-top: -80px; /* Adjust for smaller screens */
    padding: 15px;
    max-width: calc(100% - 30px);
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-gdpr__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.9em;
    margin-left: 0 !important;
    margin-bottom: 10px;
  }

  .page-gdpr__cta-group {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 15px;
    box-sizing: border-box;
  }

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

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

  .page-gdpr__floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }

  .page-gdpr__floating-btn {
    padding: 10px 15px;
    font-size: 0.85em;
  }

  /* Ensure all content containers are responsive */
  .page-gdpr__section,
  .page-gdpr__container,
  .page-gdpr__text-block,
  .page-gdpr__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__hero-section {
    overflow: hidden !important;
  }
}