.page-privacy-policy {
  background-color: #0D0E12; /* Background */
  color: #FFF3E6; /* Text Main */
  padding-bottom: 40px; /* Add some padding at the bottom */
  line-height: 1.6;
}

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

.page-privacy-policy__hero-section {
  padding-top: 20px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  text-align: center;
}

.page-privacy-policy__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.5rem); /* Adjusted for better H1 size on desktop, still responsive */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFA53A; /* Accent color for title */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__lead-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF3E6;
}

.page-privacy-policy__hero-image-wrapper {
  margin-top: 30px;
  margin-bottom: 20px;
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  filter: none; /* Ensure no filter is applied */
  min-width: 200px; /* Minimum size for content images */
  min-height: 200px; /* Minimum size for content images */
}

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

.page-privacy-policy__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #FF8C1A; /* Main color for section titles */
}

.page-privacy-policy__paragraph {
  margin-bottom: 15px;
  color: #FFF3E6;
}

.page-privacy-policy__list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  color: #FFF3E6;
}

.page-privacy-policy__list-item strong {
  color: #FFA53A; /* Accent color for strong text in lists */
}

.page-privacy-policy__contact-button-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-privacy-policy__contact-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-privacy-policy__contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-privacy-policy__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-privacy-policy__section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }
  .page-privacy-policy__container {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  /* Mobile content image constraint */
  .page-privacy-policy__content-section img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure no horizontal overflow */
  .page-privacy-policy {
    overflow-x: hidden;
  }
}

@media (max-width: 549px) {
  .page-privacy-policy__main-title {
    font-size: clamp(1.2rem, 7vw, 1.8rem);
  }
  .page-privacy-policy__lead-text {
    font-size: 1rem;
  }
  .page-privacy-policy__list {
    padding-left: 20px;
  }
  .page-privacy-policy__contact-button {
    width: 100%;
    max-width: 300px; /* Limit button width on very small screens */
  }
}

/* Ensure content area images are never smaller than 200px */
.page-privacy-policy__content-section img {
  min-width: 200px;
  min-height: 200px;
}
/* For responsive scaling, allow larger images to scale down */
.page-privacy-policy__content-section img:not([width]):not([height]) {
  max-width: 100%;
  height: auto;
}