.page-privacy-policy {
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--background);
}

.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding for visual */
  background-color: var(--background);
  overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 5vw, 3.2em);
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-privacy-policy__subtitle {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-privacy-policy__cta-button--secondary {
  background: var(--background);
  border: 2px solid var(--border);
  color: var(--text-main);
}

.page-privacy-policy__cta-button--secondary:hover {
  background: var(--border);
  color: #ffffff;
}

.page-privacy-policy__content-section {
  padding: 60px 0;
  background-color: var(--background);
  color: var(--text-main);
}

.page-privacy-policy__dark-bg {
  background-color: var(--card-bg);
}

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

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: var(--gold);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-privacy-policy__sub-title {
  font-size: 1.6em;
  color: var(--glow);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-privacy-policy__text-block {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: var(--text-main);
}

.page-privacy-policy__text-block strong {
  color: var(--text-secondary);
}

.page-privacy-policy__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: var(--text-main);
}

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  color: var(--text-main);
}

.page-privacy-policy__list-item strong {
  color: var(--glow);
}

.page-privacy-policy__image-block {
  margin: 40px auto;
  text-align: center;
  max-width: 800px;
}

.page-privacy-policy__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-privacy-policy__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-privacy-policy__contact-item {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-main);
}

.page-privacy-policy__contact-item strong {
  color: var(--glow);
}

.page-privacy-policy__contact-link {
  color: var(--glow);
  text-decoration: none;
}

.page-privacy-policy__contact-link:hover {
  text-decoration: underline;
}

.page-privacy-policy__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: clamp(1.8em, 4.5vw, 2.8em);
  }

  .page-privacy-policy__section-title {
    font-size: 2em;
  }

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

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-bottom: 40px;
  }

  .page-privacy-policy__hero-content {
    margin-top: 20px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }

  .page-privacy-policy__subtitle {
    font-size: 1em;
  }

  .page-privacy-policy__content-section {
    padding: 40px 0;
  }

  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }

  .page-privacy-policy__sub-title {
    font-size: 1.2em;
  }

  .page-privacy-policy__text-block {
    font-size: 0.95em;
  }

  /* Mobile specific overrides for images, videos, and buttons */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-privacy-policy__section, 
  .page-privacy-policy__card, 
  .page-privacy-policy__container, 
  .page-privacy-policy__hero-image-wrapper,
  .page-privacy-policy__image-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-privacy-policy__cta-button,
  .page-privacy-policy a[class*="button"],
  .page-privacy-policy 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-privacy-policy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-privacy-policy__hero-section {
    padding-top: 10px !important;
  }

  .page-privacy-policy__video-section {
    padding-top: 10px !important; /* body đã gánh --header-offset, đây chỉ là padding nhỏ */
  }

  .page-privacy-policy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}