/* style/privacy-policy.css */
:root {
  --primary-color: #0A192F;
  --secondary-color: #FFD700;
  --accent-color: #DC3545; /* Red for strong CTA */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #000000;
  --bg-light: #f8f9fa;
}

.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--bg-dark); /* Inherited from shared.css body, but ensure consistency */
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  padding: 120px 20px 80px; /* Adjusted padding-top for fixed header */
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(10, 25, 47, 0.8) 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

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

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

.page-privacy-policy__hero-description {
  font-size: 1.15em;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--secondary-color);
  color: var(--primary-color);
  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 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-privacy-policy__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__cta-button--small {
  padding: 12px 25px;
  font-size: 1em;
}

.page-privacy-policy__content-section {
  padding: 60px 0;
  box-sizing: border-box;
}

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

.page-privacy-policy__section-heading {
  font-size: 2.2em;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
}

.page-privacy-policy__sub-heading {
  font-size: 1.6em;
  color: var(--text-light);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--text-light);
  opacity: 0.9;
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-light);
  opacity: 0.9;
}

.page-privacy-policy__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--text-light);
}

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

/* Ensure images are responsive and not small icons */
.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.2);
}

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

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-top: 100px; /* Mobile padding-top for fixed header */
    padding-bottom: 60px;
  }
  .page-privacy-policy__main-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__hero-description,
  .page-privacy-policy p,
  .page-privacy-policy__list li {
    font-size: 1em;
  }
  .page-privacy-policy__section-heading {
    font-size: 1.8em;
  }
  .page-privacy-policy__sub-heading {
    font-size: 1.2em;
  }
  .page-privacy-policy__cta-button {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-privacy-policy__cta-button--small {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-privacy-policy__container {
    padding: 0 10px;
  }
  
  /* Image responsiveness */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-privacy-policy__content-section,
  .page-privacy-policy__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__section-heading {
    font-size: 1.6em;
  }
  .page-privacy-policy__sub-heading {
    font-size: 1.1em;
  }
  .page-privacy-policy__hero-section {
    padding-top: 90px; /* Further adjustment for smaller mobile screens */
  }
}