:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A1A1A; /* Deep Black */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-dark: #121212;
  --background-light: #f8f9fa;
  --border-color: #e0e0e0;
}

.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for body background */
  background-color: var(--background-dark);
}

/* Ensure content is not hidden by fixed header */
.page-privacy-policy__hero-section {
  padding-top: 100px; /* Adjust based on actual header height */
}

.page-privacy-policy__hero-section {
  position: relative;
  background: var(--secondary-color); /* Deep Black background */
  color: var(--text-light);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  overflow: hidden;
}

.page-privacy-policy__hero-container {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

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

.page-privacy-policy__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color); /* Gold background */
  color: var(--secondary-color); /* Deep Black text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-privacy-policy__cta-button:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__content-section {
  background: var(--background-light); /* Light background for readability */
  color: var(--text-dark); /* Dark text on light background */
  padding: 60px 20px;
}

.page-privacy-policy__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-privacy-policy__updated-date {
  text-align: right;
  font-size: 0.9em;
  color: #666;
  margin-bottom: 30px;
}

.page-privacy-policy__heading {
  font-size: 2em;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.page-privacy-policy__subheading {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 1.05em;
}

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

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

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

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

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

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

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

.page-privacy-policy__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px dashed var(--border-color);
}

/* Image responsive styles */
.page-privacy-policy img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 20px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

  .page-privacy-policy__hero-subtitle {
    font-size: 1.2em;
  }

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

  .page-privacy-policy__subheading {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-top: 80px !important;
    padding: 60px 15px;
    min-height: 250px;
  }

  .page-privacy-policy__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

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

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

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

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

  .page-privacy-policy__heading {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-privacy-policy__subheading {
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item,
  .page-privacy-policy__contact-item {
    font-size: 0.95em;
    line-height: 1.7;
  }

  .page-privacy-policy__list {
    margin-left: 20px;
  }
  
  .page-privacy-policy__cta-bottom {
    margin-top: 40px;
  }

  /* Ensure all images are responsive and do not overflow */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Ensure all containers with images also adapt */
  .page-privacy-policy__hero-section,
  .page-privacy-policy__content-section,
  .page-privacy-policy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Important to prevent horizontal scroll */
  }
}

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

  .page-privacy-policy__hero-subtitle {
    font-size: 0.9em;
  }

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

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

  .page-privacy-policy__subheading {
    font-size: 1.1em;
  }
}