:root {
  --primary-color: #CC0000; /* Đỏ rực rỡ */
  --secondary-color: #FFD700; /* Vàng sang trọng */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f8f8;
  --background-dark: #222222;
  --border-color: #e0e0e0;
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

/* Đảm bảo nội dung không bị che bởi header cố định */
.page-gdpr__hero-section {
  padding-top: 120px; /* Điều chỉnh theo chiều cao header */
}

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

.page-gdpr__hero-section {
  background: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-gdpr__main-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-gdpr__subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.8;
}

.page-gdpr__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-gdpr__btn-primary:hover {
  background: darken(var(--secondary-color), 10%);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.page-gdpr__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__sub-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__content-block {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-gdpr__content-block p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-gdpr__list, .page-gdpr__numbered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-gdpr__numbered-list {
  list-style-type: decimal;
}

.page-gdpr__list li, .page-gdpr__numbered-list li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.page-gdpr__dark-section {
  background: var(--background-dark);
  color: var(--text-light);
}

.page-gdpr__dark-section .page-gdpr__section-title,
.page-gdpr__dark-section .page-gdpr__sub-title {
  color: var(--secondary-color);
}

.page-gdpr__dark-section .page-gdpr__content-block {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
}

.page-gdpr__dark-section .page-gdpr__content-block p,
.page-gdpr__dark-section .page-gdpr__list li,
.page-gdpr__dark-section .page-gdpr__numbered-list li {
  color: var(--text-light);
}

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

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

.page-gdpr__contact-list li {
  margin-bottom: 10px;
  font-size: 17px;
  color: var(--text-dark);
}

.page-gdpr__contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 38px;
  }
  .page-gdpr__section-title {
    font-size: 32px;
  }
  .page-gdpr__sub-title {
    font-size: 22px;
  }
  .page-gdpr__content-block {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 100px !important; /* Mobile fixed header adjustment */
    padding: 60px 15px;
  }
  .page-gdpr__container {
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__main-title {
    font-size: 32px;
  }
  .page-gdpr__subtitle {
    font-size: 16px;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page-gdpr__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-gdpr__sub-title {
    font-size: 20px;
  }
  .page-gdpr__content-block {
    padding: 20px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__content-block p,
  .page-gdpr__list li,
  .page-gdpr__numbered-list li {
    font-size: 15px;
  }
  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }
  .page-gdpr__contact-list li {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 28px;
  }
  .page-gdpr__section-title {
    font-size: 24px;
  }
  .page-gdpr__sub-title {
    font-size: 18px;
  }
  .page-gdpr__cta-button {
    font-size: 15px;
    padding: 10px 20px;
  }
  .page-gdpr__content-block {
    padding: 15px;
  }
  .page-gdpr__content-block p,
  .page-gdpr__list li,
  .page-gdpr__numbered-list li {
    font-size: 14px;
  }
}