/* style/privacy-policy.css */

/* Variables for consistent branding */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --background-dark: #1a1a1a; /* Slightly lighter dark for sections */
  --background-light: #f0f0f0;
  --border-color: rgba(255, 255, 255, 0.1);
}

.page-privacy-policy {
  color: var(--text-color-light); /* Main text color for dark body background */
  background-color: #121212; /* Inherited from body, but explicitly setting for clarity */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Desktop: Adjust for fixed header */
  min-height: 100vh;
}

/* --- Hero Section --- */
.page-privacy-policy__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--background-dark) 0%, #0a0a0a 100%);
  text-align: center;
}

.page-privacy-policy__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-privacy-policy__hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  object-fit: cover;
}

.page-privacy-policy__hero-content {
  max-width: 900px;
}

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

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

/* --- General Content Section --- */
.page-privacy-policy__content-section {
  padding: 60px 0;
  background-color: #121212;
}

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

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-privacy-policy p {
  margin-bottom: 15px;
  color: var(--text-color-light);
}

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

.page-privacy-policy ul li {
  margin-bottom: 10px;
}

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

.page-privacy-policy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__contact-info {
  background-color: var(--background-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__contact-info p {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.9);
}

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

/* --- Call to Action Button --- */
.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-color-dark);
  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.2);
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-privacy-policy__cta-button:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button--bottom {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
  margin-top: 60px;
  margin-bottom: 40px;
}

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

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

@media (max-width: 768px) {
  .page-privacy-policy {
    padding-top: 100px !important; /* Mobile: Adjust for fixed header */
  }

  .page-privacy-policy__hero-section {
    padding: 60px 0;
  }

  .page-privacy-policy__hero-image {
    margin-bottom: 30px;
    border-radius: 8px;
  }

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

  .page-privacy-policy__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

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

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

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

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

  .page-privacy-policy__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 30px auto;
    border-radius: 6px;
  }

  .page-privacy-policy__contact-info {
    padding: 20px;
    margin-top: 30px;
  }

  .page-privacy-policy__contact-info p {
    font-size: 1em;
  }

  /* Buttons responsive */
  .page-privacy-policy__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-top: 15px !important;
  }

  .page-privacy-policy__cta-button--bottom {
    margin-top: 40px !important;
    margin-bottom: 20px !important;
  }
}

@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__sub-title {
    font-size: 1.2em;
  }
}