/* style/privacy-policy.css */
:root {
  --primary-color: #0A246A;
  --secondary-color: #F3C72B;
  --accent-color: #E04B4B;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #000000;
  --bg-section-dark: #0A246A;
  --bg-section-light: #1a1a1a;
  --border-color: rgba(255, 255, 255, 0.1);
}

.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Body background is #000 (dark), so use light text */
  background-color: var(--bg-dark);
  line-height: 1.6;
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

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

/* Hero Section */
.page-privacy-policy__hero-section {
  background-color: var(--bg-section-dark);
  background-image: url('[GALLERY:hero:privacy policy,ok365 vip,secure data,vietnam betting,abstract background]');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.page-privacy-policy__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.page-privacy-policy__main-title {
  font-size: 3.2em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-privacy-policy__cta-button--primary {
  background-color: var(--secondary-color);
  color: var(--bg-section-dark);
}

.page-privacy-policy__cta-button--primary:hover {
  background-color: #e0b624;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-privacy-policy__cta-button--secondary:hover {
  background-color: var(--text-light);
  color: var(--bg-section-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Content Sections */
.page-privacy-policy__content-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-privacy-policy__content-section:last-of-type {
  border-bottom: none;
}

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

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

.page-privacy-policy__sub-title {
  font-size: 1.8em;
  color: var(--text-light);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-privacy-policy p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: var(--text-light);
}

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--text-light);
}

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

.page-privacy-policy__image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

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

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

.page-privacy-policy__contact-link {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: 2.8em;
  }

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

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

  .page-privacy-policy p,
  .page-privacy-policy__list-item {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
    font-size: 15px;
  }

  .page-privacy-policy__hero-section {
    padding: 60px 0;
  }

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

  .page-privacy-policy__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-privacy-policy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-privacy-policy__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-privacy-policy__sub-title {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

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

  .page-privacy-policy p,
  .page-privacy-policy__list-item,
  .page-privacy-policy__contact-item {
    font-size: 0.95em;
  }

  .page-privacy-policy__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 30px auto;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 1.8em;
  }

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

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

  .page-privacy-policy__cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}