.page-gdpr {
  background-color: #08160F; /* Nền tối theo tùy chỉnh */
  color: #F2FFF6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.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: #11271B; /* Card BG */
}

.page-gdpr__section-title {
  color: #F2FFF6; /* Text Main */
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.2;
}

.page-gdpr__text-block {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  font-size: 1rem;
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #08160F;
}

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

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

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
}

.page-gdpr__hero-title {
  color: #F2FFF6; /* Text Main */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.15rem;
  margin-bottom: 30px;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-gdpr__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #2AD16F; /* Glow */
  border: 2px solid #2AD16F; /* Glow */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-secondary:hover {
  background-color: #2AD16F; /* Glow */
  color: #08160F; /* Background */
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-gdpr__flex {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-gdpr__flex-reverse {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: row-reverse;
  text-align: left;
}

.page-gdpr__content-block,
.page-gdpr__image-block {
  flex: 1;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  min-height: 200px;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.page-gdpr__list-item {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 1rem;
}

.page-gdpr__list-item::before {
  content: '✓';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-gdpr__list--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-gdpr__list--inline .page-gdpr__list-item {
  background-color: #0A4B2C; /* Deep Green */
  padding: 8px 15px;
  border-radius: 5px;
  margin-bottom: 0;
  padding-left: 15px;
  color: #F2FFF6;
}

.page-gdpr__list--inline .page-gdpr__list-item::before {
  content: none;
}

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

.page-gdpr__card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-gdpr__card-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__card-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
}

.page-gdpr__cta-wrapper {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-gdpr__cta-text {
  max-width: 800px;
  font-size: 1.1rem;
}

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

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

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

.page-gdpr__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-item summary:hover {
  background-color: #0A4B2C; /* Deep Green */
}

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

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

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

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  line-height: 1.6;
}

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

.page-gdpr__cta-final-section {
  padding: 80px 0;
}

.page-gdpr__cta-final-content {
  max-width: 900px;
}

.page-gdpr__btn--large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

.page-gdpr a {
  color: #57E38D; /* Glow */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: #F2C14E; /* Gold */
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-gdpr__flex,
  .page-gdpr__flex-reverse {
    flex-direction: column;
    text-align: center;
  }

  .page-gdpr__content-block,
  .page-gdpr__image-block {
    width: 100%;
  }

  .page-gdpr__image-block {
    order: -1; /* Image appears above text on smaller screens */
  }

  .page-gdpr__hero-image-wrapper {
    max-height: 50vh;
  }
}

@media (max-width: 768px) {
  .page-gdpr__section {
    padding: 40px 0;
  }

  .page-gdpr__container {
    padding: 0 15px;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-gdpr__hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

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

  /* Mobile responsive images */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile responsive containers for images/videos */
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__image-block,
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__introduction-section,
  .page-gdpr__data-collection-section,
  .page-gdpr__user-rights-section,
  .page-gdpr__security-section,
  .page-gdpr__cookies-section,
  .page-gdpr__contact-section,
  .page-gdpr__faq-section,
  .page-gdpr__cta-final-section,
  .page-gdpr__card,
  .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; /* Prevent horizontal scroll */
  }

  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-gdpr__hero-content {
    padding: 0 15px;
  }

  /* Mobile responsive buttons */
  .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;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .page-gdpr__cta-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__cta-final-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__cards-grid {
    grid-template-columns: 1fr;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__list--inline {
    flex-direction: column;
    align-items: center;
  }

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

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

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

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

  .page-gdpr__btn--large {
    font-size: 1.1rem;
    padding: 15px 30px;
  }
}