/* style/privacy-policy.css */
:root {
  --primary-color: #0A192F; /* Deep Blue */
  --secondary-color: #FFD700; /* Gold */
  --text-light: #f0f0f0;
  --text-dark: #333333;
  --background-light: #ffffff;
  --background-dark: #0A192F;
  --border-color: #e0e0e0;
}

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

/* Fixed Nav Bar Spacing */
.page-privacy-policy__hero-section {
  padding-top: 120px; /* Adjust for fixed header on desktop */
  padding-bottom: 60px;
  background: var(--primary-color);
  color: var(--text-light);
  text-align: center;
}

.page-privacy-policy__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-privacy-policy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: bold;
}

.page-privacy-policy__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.8;
  color: var(--text-light);
}

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

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.05em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%;
  box-sizing: border-box;
}

.page-privacy-policy__btn-primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-privacy-policy__btn-primary:hover {
  background: darken(var(--secondary-color), 10%); /* Assuming SCSS-like darken or manually choose a darker gold */
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-privacy-policy__btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__content-section {
  padding: 60px 20px;
}

.page-privacy-policy__content-container {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-dark); /* Default for light background sections */
}

.page-privacy-policy__dark-bg .page-privacy-policy__content-container,
.page-privacy-policy__dark-bg .page-privacy-policy__section-title,
.page-privacy-policy__dark-bg .page-privacy-policy__text-block,
.page-privacy-policy__dark-bg .page-privacy-policy__list li,
.page-privacy-policy__dark-bg .page-privacy-policy__contact-link {
  color: var(--text-light); /* Override for dark background sections */
}

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

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

.page-privacy-policy__content-section:nth-child(even) .page-privacy-policy__section-title {
  color: var(--secondary-color);
}

.page-privacy-policy__text-block {
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.7;
  text-align: justify;
}

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

.page-privacy-policy__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  line-height: 1.7;
}

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

.page-privacy-policy__contact-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  line-height: 1.7;
}

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

.page-privacy-policy__contact-link:hover {
  color: #ffffff;
}

.page-privacy-policy__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-privacy-policy__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-privacy-policy__hero-section {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-privacy-policy__hero-container {
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-privacy-policy__hero-title {
    font-size: 2.2em;
  }
  .page-privacy-policy__hero-description {
    font-size: 1em;
  }
  .page-privacy-policy__hero-cta {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-privacy-policy__btn-primary,
  .page-privacy-policy__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-privacy-policy__content-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-privacy-policy__content-container {
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__text-block,
  .page-privacy-policy__list li {
    font-size: 0.95em;
  }
  .page-privacy-policy__list {
    padding-left: 15px;
  }
  .page-privacy-policy__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    border-radius: 4px;
  }
  .page-privacy-policy__image-wrapper {
    padding-left: 0;
    padding-right: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}