/* style/privacy-policy.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Dark Blue */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark-main: #0a0a0a;
  --bg-dark-section: #1a1a1a;
  --bg-light-section: #f0f0f0;
  --border-color: #333333;
}

.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body bg */
  background-color: var(--bg-dark-main);
  padding-bottom: 60px; /* Space before footer */
}

.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-privacy-policy__hero-section {
  position: relative;
  background: var(--secondary-color);
  color: var(--text-light);
  padding: 120px 0 80px 0; /* Adjusted padding-top for fixed header */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-privacy-policy__description {
  font-size: 1.15em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-privacy-policy__cta-wrapper {
  margin-top: 30px;
}

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

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

.page-privacy-policy__cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
.page-privacy-policy__content-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-privacy-policy__content-section:last-of-type {
  border-bottom: none;
}

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

.page-privacy-policy__content-section h2,
.page-privacy-policy__content-section h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.page-privacy-policy__subsection-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-light);
}

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

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

.page-privacy-policy__list li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

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

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

.page-privacy-policy__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

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

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 100px 0 60px 0; /* Mobile padding-top for fixed header */
    min-height: 300px;
  }
  .page-privacy-policy__main-title {
    font-size: 2.2em;
    padding: 0 15px;
  }
  .page-privacy-policy__description {
    font-size: 1em;
    padding: 0 15px;
  }
  .page-privacy-policy__cta-button {
    width: 90%;
    max-width: 300px;
    padding: 12px 25px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-privacy-policy__content-section {
    padding: 60px 0;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8em;
    padding: 0 15px;
  }
  .page-privacy-policy__subsection-title {
    font-size: 1.4em;
    padding: 0 15px;
  }
  .page-privacy-policy p,
  .page-privacy-policy__list li {
    font-size: 0.95em;
    padding: 0 15px;
  }
  .page-privacy-policy__list {
    margin-left: 15px;
    padding-right: 15px;
  }
  .page-privacy-policy__image-wrapper {
    margin: 30px 0;
    padding: 0 15px;
  }
  .page-privacy-policy__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-privacy-policy__container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 1.8em;
  }
  .page-privacy-policy__section-title {
    font-size: 1.5em;
  }
  .page-privacy-policy__subsection-title {
    font-size: 1.2em;
  }
  .page-privacy-policy__hero-section {
    padding-top: 80px; /* Further adjust for smaller mobile screens */
  }
}