.page-gdpr {
  background-color: #F4F7FB; /* Nền chung của trang */
  color: #1F2D3D; /* Màu chữ chính */
  font-family: Arial, sans-serif;
  padding-bottom: 20px;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Nhỏ hơn so với header-offset */
  background: linear-gradient(to bottom, #2F6BFF, #6FA3FF); /* Sử dụng gradient từ màu chủ đạo */
  color: #FFFFFF;
  padding-bottom: 40px;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Giới hạn chiều rộng ảnh */
  margin-bottom: 20px;
}

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

.page-gdpr__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF; /* Màu chữ trắng cho tiêu đề chính */
  margin-bottom: 15px;
}

.page-gdpr__description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #D6E2FF; /* Màu chữ phụ trợ cho mô tả */
  margin-bottom: 30px;
}

.page-gdpr__container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.page-gdpr__section-title {
  font-size: 2em;
  color: #1F2D3D; /* Text Main */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  border-bottom: 2px solid #D6E2FF; /* Border color */
  padding-bottom: 10px;
}

.page-gdpr__text {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #1F2D3D; /* Text Main */
}

.page-gdpr__text strong {
  color: #000000; /* Custom Color_1776249996415 */
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #1F2D3D; /* Text Main */
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  line-height: 1.6;
}

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

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure no extra space below image */
  margin: 0 auto;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-gdpr__image-caption {
  font-size: 0.9em;
  color: #6FA3FF; /* Sử dụng màu phụ trợ */
  margin-top: 10px;
}

.page-gdpr__contact-link {
  color: #2F6BFF; /* Main color for links */
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-link:hover {
  text-decoration: underline;
  color: #6FA3FF; /* Hover color */
}

.page-gdpr__last-updated {
  text-align: right;
  font-size: 0.9em;
  color: #6FA3FF; /* Auxiliary color */
  margin-top: 40px;
}

.page-gdpr__related-links {
  margin-top: 50px;
  border-top: 1px solid #D6E2FF;
  padding-top: 30px;
}

.page-gdpr__related-title {
  font-size: 1.5em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__list--inline {
  list-style-type: none;
  margin-left: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.page-gdpr__link-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-gdpr__link-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slightly different gradient on hover */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
  }

  .page-gdpr__section-title {
    font-size: 1.6em;
  }

  .page-gdpr__container {
    margin: 20px auto;
    padding: 20px;
  }

  .page-gdpr__list--inline {
    flex-direction: column;
    gap: 10px;
  }

  .page-gdpr__content-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }

  .page-gdpr__section-title {
    font-size: 1.4em;
  }

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

  .page-gdpr__text {
    font-size: 0.95em;
  }
}