/* style/privacy-policy.css */
/* 
  BEM Naming Convention: page-privacy-policy__element-name
  Colors:
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --card-bg: #111111;
  --body-bg: #0A0A0A;
  --text-main: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
*/

.page-privacy-policy {
  color: var(--text-main); /* Main text color for readability on dark background */
  background-color: var(--body-bg); /* Use the specified body background color */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Fixed Header Spacing */
/* Assuming body { padding-top: var(--header-offset); } is in shared.css */
/* First section in main should have minimal top padding to avoid double spacing */
.page-privacy-policy__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Minimal padding-top for the first section, body handles --header-offset */
  padding-bottom: 60px;
  background: var(--body-bg); /* Ensure background is dark for contrast */
}

.page-privacy-policy__hero-content-wrapper {
  display: flex;
  flex-direction: column; /* Image above text on mobile, or for overall structure */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}

.page-privacy-policy__hero-text {
  text-align: center;
  max-width: 800px;
  z-index: 2;
  color: var(--text-main); /* Ensure text is visible on dark background */
}

.page-privacy-policy__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--secondary-color); /* Use secondary color for title */
  margin-bottom: 15px;
  max-width: 100%; /* Prevent overflow */
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.4); /* Subtle glow */
  /* No fixed font-size, rely on responsive scaling and line-height */
}

.page-privacy-policy__tagline {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-main);
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Max width for the image wrapper */
  margin-top: 30px; /* Space between text and image */
  z-index: 1;
}

.page-privacy-policy__hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

.page-privacy-policy__section {
  padding: 50px 0;
  background-color: var(--body-bg);
}

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

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(242, 193, 78, 0.3);
}

.page-privacy-policy__subsection-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-privacy-policy p {
  margin-bottom: 15px;
  color: var(--text-main);
  font-size: 1em;
}

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

.page-privacy-policy__list li {
  margin-bottom: 10px;
  color: var(--text-main);
}

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

.page-privacy-policy a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
  color: var(--glow-color);
  text-decoration: underline;
}