.page-gdpr {
  color: #ffffff; /* Sẽ sử dụng màu trắng cho văn bản chính trên nền tối của body */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Nền của main sẽ trong suốt để hiển thị nền body */
  padding-top: 120px; /* Đảm bảo nội dung không bị che bởi header cố định */
}

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

/* Hero Section */
.page-gdpr__hero-section {
  background: linear-gradient(135deg, var(--primary-color, #FFD700) 0%, #1E90FF 100%);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-gdpr__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.page-gdpr__hero-button {
  display: inline-block;
  padding: 15px 40px;
  background: #0a0a0a; /* Nút CTA màu đen trên nền gradient */
  color: var(--primary-color, #FFD700); /* Chữ màu vàng nổi bật */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--primary-color, #FFD700);
}

.page-gdpr__hero-button:hover {
  background: var(--primary-color, #FFD700); /* Nền vàng khi hover */
  color: #0a0a0a; /* Chữ đen khi hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Content Section */
.page-gdpr__content-section {
  padding: 60px 0;
  background-color: #0a0a0a; /* Nền tối cho phần nội dung */
  color: #f0f0f0; /* Chữ sáng trên nền tối */
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--primary-color, #FFD700);
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 3px solid var(--secondary-color, #1E90FF);
  padding-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: var(--secondary-color, #1E90FF);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

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

.page-gdpr__link-inline {
  color: var(--primary-color, #FFD700);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__link-inline:hover {
  color: var(--secondary-color, #1E90FF);
}

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

.page-gdpr__contact-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-gdpr__contact-item strong {
  color: var(--primary-color, #FFD700);
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-gdpr {
    padding-top: 100px !important; /* Điều chỉnh padding-top cho mobile */
  }

  .page-gdpr__hero-section {
    padding: 60px 15px;
  }

  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

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

  .page-gdpr__hero-button {
    padding: 12px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__content-section {
    padding: 40px 15px;
  }

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

  .page-gdpr__sub-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-gdpr__paragraph,
  .page-gdpr__list-item,
  .page-gdpr__contact-item {
    font-size: 0.95em;
  }

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

  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto !important;
    border-radius: 4px;
  }
}