.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background from shared.css */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  text-align: center;
  background-color: #8B0000; /* Auxiliary color for hero section background */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-privacy-policy__main-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-privacy-policy__description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__content-section {
  padding: 60px 20px;
  background-color: #1a1a2e; /* Matching body background from shared.css */
  color: #ffffff;
}

.page-privacy-policy__article {
  background-color: #2a2a4a; /* Slightly lighter dark background for article */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__article-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-privacy-policy__article-title:first-of-type {
  margin-top: 0;
}

.page-privacy-policy__sub-title {
  font-size: 1.6em;
  color: #f0f0f0;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  font-size: 1em;
  color: #e0e0e0;
}

.page-privacy-policy ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-privacy-policy ul li {
  margin-bottom: 8px;
  font-size: 1em;
}

.page-privacy-policy a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
  color: #ffe873; /* Lighter gold on hover */
  text-decoration: underline;
}

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

.page-privacy-policy__cta-bottom {
  padding: 60px 20px;
  text-align: center;
  background-color: #8B0000; /* Auxiliary color for CTA background */
  color: #ffffff;
}

.page-privacy-policy__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-privacy-policy__cta-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: #FFD700; /* Primary color for CTA button */
  color: #1a1a2e; /* Dark text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
  background-color: #ffe873; /* Lighter gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-privacy-policy__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-privacy-policy__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }
  .page-privacy-policy__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-privacy-policy__description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-privacy-policy__content-section {
    padding: 40px 15px;
  }
  .page-privacy-policy__article {
    padding: 25px;
  }
  .page-privacy-policy__article-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-privacy-policy__sub-title {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-privacy-policy p,
  .page-privacy-policy ul li {
    font-size: 0.95em;
  }
  .page-privacy-policy__cta-bottom {
    padding: 40px 15px;
  }
  .page-privacy-policy__cta-title {
    font-size: 2em;
  }
  .page-privacy-policy__cta-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-privacy-policy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-privacy-policy__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  /* Ensure all images are responsive and do not overflow */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-privacy-policy__container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .page-privacy-policy__article {
    margin-left: 15px;
    margin-right: 15px;
    max-width: calc(100% - 30px) !important;
    width: calc(100% - 30px) !important;
    box-sizing: border-box !important;
  }
}

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