.page-gdpr {
  background-color: var(--black-color, #0d0d0d); /* Sử dụng màu đen từ shared.css hoặc màu tối mặc định */
  color: #ffffff; /* Chữ màu trắng cho nền tối */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Đảm bảo nội dung không bị che bởi header cố định */
  min-height: 100vh;
  font-size: 16px;
}

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

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

.page-gdpr__section--alt-bg {
  background-color: rgba(38, 169, 224, 0.1); /* Màu nền phụ, nhẹ hơn màu chủ đạo */
}

.page-gdpr__hero-section {
  text-align: center;
  padding: 80px 0;
  background-color: #26A9E0; /* Màu chủ đạo cho hero section */
  color: #ffffff;
}

.page-gdpr__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-gdpr__intro-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-gdpr__hero-image-wrapper {
  margin-top: 40px;
}

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__content-area p {
  margin-bottom: 15px;
  color: #f0f0f0; /* Chữ hơi nhạt hơn trắng tinh để dễ đọc trên nền tối */
}

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

.page-gdpr__card {
  background-color: #1a1a1a; /* Nền card tối hơn nền chính */
  color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-gdpr__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-gdpr__card-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__card p {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-gdpr__rights-list,
.page-gdpr__protection-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-gdpr__rights-list li,
.page-gdpr__protection-list li {
  background-color: #1a1a1a;
  border-left: 5px solid #26A9E0;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #f0f0f0;
}

.page-gdpr__rights-list strong,
.page-gdpr__protection-list strong {
  color: #26A9E0;
  font-weight: bold;
}

.page-gdpr__image-with-text {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__image-with-text .page-gdpr__content-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
}

.page-gdpr__image-with-text p {
  flex: 1;
  color: #f0f0f0;
}

.page-gdpr__image-center {
  text-align: center;
  margin: 40px 0;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-gdpr__contact-info ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-gdpr__contact-info li {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-gdpr__contact-info strong {
  color: #26A9E0;
}

.page-gdpr__link {
  color: #26A9E0;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #5ac4ee;
}

.page-gdpr__faq-section {
  background-color: #1a1a1a; /* Nền tối cho phần FAQ */
  padding-bottom: 80px;
}

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

.page-gdpr__faq-item {
  background-color: #222222;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #26A9E0;
  color: #ffffff;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background-color 0.3s ease;
}

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

.page-gdpr__faq-question:hover {
  background-color: #1d8fc0;
}

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

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

.page-gdpr__faq-answer {
  padding: 20px 25px;
  background-color: #2e2e2e;
  color: #f0f0f0;
  font-size: 0.95em;
  line-height: 1.6;
}

.page-gdpr__commitment-section p {
  color: #f0f0f0;
  margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-gdpr__main-title {
    font-size: 2.2em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__card-title {
    font-size: 1.2em;
  }
  .page-gdpr__grid-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-gdpr__image-with-text {
    flex-direction: column;
    text-align: center;
  }
  .page-gdpr__image-with-text .page-gdpr__content-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 15px;
  }
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
  .page-gdpr__intro-text {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__hero-section {
    padding: 60px 0;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  
  /* Mobile image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Containers for images, videos, buttons */
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__image-with-text,
  .page-gdpr__image-center,
  .page-gdpr__faq-item,
  .page-gdpr__contact-info {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Specific overrides for flex items that might break */
  .page-gdpr__image-with-text .page-gdpr__content-image {
    max-width: 100% !important;
  }

  /* Buttons responsiveness (if any were present) */
  .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; 
  }

  /* FAQ specific mobile adjustments */
  .page-gdpr__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-gdpr__faq-answer {
    padding: 15px 20px;
  }
}