:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --bg-color: #0A0A0A; /* Shared body background */
  --card-bg-color: #111111;
  --text-main-color: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-privacy-policy {
  color: var(--text-main-color); /* Light text for dark background */
  background-color: var(--bg-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-privacy-policy h1,
.page-privacy-policy h2,
.page-privacy-policy h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-privacy-policy h1 {
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size for H1 */
  font-weight: bold;
  text-align: center;
  margin-top: 0;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.5); /* Subtle glow */
}

.page-privacy-policy h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 30px;
}

.page-privacy-policy h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--secondary-color);
}

.page-privacy-policy p {
  margin-bottom: 15px;
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  padding: 0;
}

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

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

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

/* Hero Section */
.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  background-color: var(--bg-color);
  overflow: hidden;
}

.page-privacy-policy__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure it takes full width within max-width */
}

.page-privacy-policy__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 1200px; /* Max width for the image container */
}

.page-privacy-policy__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 211, 107, 0.4); /* Glow effect */
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px; /* Max width for content for better readability */
  padding: 0 15px;
}

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

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.4);
}

/* General Section Styling */
.page-privacy-policy__section {
  padding: 50px 20px;
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
}

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

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

.page-privacy-policy__section-title {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-size: clamp(26px, 3vw, 40px);
}

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

/* Card Styling */
.page-privacy-policy__card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: var(--text-main-color); /* Light text for dark card background */
}

.page-privacy-policy__card-title {
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 20px;
}

.page-privacy-policy__card-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__contact-link {
  font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important; /* Mobile small top padding */
  }

  .page-privacy-policy__hero-content h1 {
    font-size: clamp(24px, 6vw, 36px);
  }

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

  .page-privacy-policy__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-privacy-policy__section {
    padding: 30px 15px;
  }

  .page-privacy-policy__section-title {
    font-size: clamp(22px, 5vw, 30px);
    margin-bottom: 20px;
  }

  .page-privacy-policy__section-description {
    font-size: 0.95em;
  }

  .page-privacy-policy__card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__card-title {
    font-size: clamp(18px, 4.5vw, 24px);
  }

  .page-privacy-policy__list {
    margin-left: 15px;
  }
  
  /* Images responsive styles */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  
  /* All containers that might hold images or buttons */
  .page-privacy-policy__section,
  .page-privacy-policy__container,
  .page-privacy-policy__card,
  .page-privacy-policy__hero-container,
  .page-privacy-policy__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Specific override for hero-content padding if needed to center text better */
  .page-privacy-policy__hero-content {
      padding-left: 0;
      padding-right: 0;
  }

  /* Multiple buttons arrangement in mobile */
  .page-privacy-policy__button-group { /* If such a class exists for multiple buttons */
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }
}

/* Ensure all content area images are at least 200px, but responsive */
.page-privacy-policy img {
  min-width: 200px;
  min-height: 200px;
}