/* style/privacy-policy.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1E90FF; /* Dodger Blue */
  --text-light: #f0f0f0; /* Light text for dark backgrounds */
  --text-dark: #333333; /* Dark text for light backgrounds */
  --bg-dark-1: #0d0d0d; /* Assuming shared.css defines --dark-bg-1 */
  --bg-dark-2: #1a1a1a;
  --border-color: rgba(255, 255, 255, 0.1);
}

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

/* Top padding for fixed header */
.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  padding: 80px 20px 40px;
  padding-top: 120px; /* Desktop: Adjust based on actual header height */
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(30, 144, 255, 0.1));
}

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

.page-privacy-policy__main-title {
  font-size: 3.2em;
  color: var(--primary-color); /* Gold title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-privacy-policy__hero-description a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-color);
  color: #000000; /* Black text for gold button for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

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

.page-privacy-policy__content-section {
  padding: 60px 20px;
  background-color: var(--bg-dark-2);
  color: var(--text-light);
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
  font-weight: bold;
}

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

.page-privacy-policy__paragraph {
  font-size: 1em;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-privacy-policy__paragraph a,
.page-privacy-policy__list-item a,
.page-privacy-policy__contact-link {
  color: var(--secondary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__paragraph a:hover,
.page-privacy-policy__list-item a:hover,
.page-privacy-policy__contact-link:hover {
  color: #87CEEB; /* Lighter blue on hover */
}

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

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

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

.page-privacy-policy__keyword {
  font-weight: bold;
  color: var(--primary-color);
}

.page-privacy-policy__image-wrapper {
  margin: 30px 0;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-top: 100px; /* Mobile: Adjust based on actual header height */
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-privacy-policy__hero-description {
    font-size: 1em;
  }

  .page-privacy-policy__cta-button {
    width: 100%;
    max-width: 300px;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
  }

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

  .page-privacy-policy__section-title {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

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

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

  .page-privacy-policy__image-wrapper {
    margin: 20px 0;
  }
  
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-privacy-policy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

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

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