/* style/privacy-policy.css */

/* Variables for consistency */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #0A0A0A; /* Dark Black */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #0A0A0A;
  --background-light-card: rgba(255, 255, 255, 0.1);
  --border-color: #333333;
}

/* Base styles for the privacy policy page */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Light text on dark body background */
  line-height: 1.6;
  padding-bottom: 60px; /* Space above footer */
  background-color: var(--background-dark); /* Ensure background is dark */
}

/* Fixed header padding for desktop */
.page-privacy-policy__content-section {
  padding-top: 120px; /* Adjusted for fixed header on desktop */
  padding-bottom: 40px;
  background-color: var(--background-dark);
  color: var(--text-light);
}

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

.page-privacy-policy__main-title {
  font-size: 3.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.page-privacy-policy__introduction {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  color: #f0f0f0;
}

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

.page-privacy-policy__sub-heading {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-privacy-policy p {
  margin-bottom: 1.5em;
  color: var(--text-light);
  text-align: justify;
}

.page-privacy-policy ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 1.5em;
  color: var(--text-light);
}

.page-privacy-policy ul ul {
  list-style-type: circle;
  margin-left: 20px;
}

.page-privacy-policy li {
  margin-bottom: 0.8em;
  color: var(--text-light);
}

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

.page-privacy-policy__image-wrapper {
  margin: 40px 0;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
}

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

.page-privacy-policy__contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
  color: #fff;
  text-decoration: underline;
}

.page-privacy-policy__cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background: linear-gradient(90deg, #0A0A0A, #1A1A1A);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__cta-section p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.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;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
  background: #fff;
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.5);
}

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

  .page-privacy-policy__heading {
    font-size: 2em;
  }

  .page-privacy-policy__sub-heading {
    font-size: 1.4em;
  }

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

@media (max-width: 768px) {
  .page-privacy-policy__content-section {
    padding-top: 100px !important; /* Adjusted for fixed header on mobile */
    padding-bottom: 30px;
  }

  .page-privacy-policy__container {
    padding: 0 15px;
  }

  .page-privacy-policy__main-title {
    font-size: 2.2em;
    margin-bottom: 20px;
  }

  .page-privacy-policy__introduction {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-privacy-policy__heading {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__sub-heading {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .page-privacy-policy p,
  .page-privacy-policy li {
    font-size: 0.9em;
  }

  .page-privacy-policy ul {
    margin-left: 20px;
  }

  .page-privacy-policy__image-wrapper {
    margin: 30px 0;
  }

  .page-privacy-policy__cta-section {
    margin-top: 50px;
    padding: 30px 15px;
  }

  .page-privacy-policy__cta-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
  }

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

  /* Ensure images are fully responsive and prevent overflow */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  
  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container,
  .page-privacy-policy__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

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

  .page-privacy-policy__heading {
    font-size: 1.6em;
  }

  .page-privacy-policy__sub-heading {
    font-size: 1.2em;
  }
}