.page-privacy-policy {
  padding-bottom: 40px; /* General padding for the bottom of the main content */
  background-color: #08160F; /* Background color from custom scheme */
  color: #F2FFF6; /* Main text color */
}

/* Hero Section */
.page-privacy-policy__hero-section {
  display: flex;
  flex-direction: column; /* Ensure image is above text */
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding for the first section */
  padding-bottom: 40px;
  background-color: #0A4B2C; /* Deep Green for hero background */
}

.page-privacy-policy__hero-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
  max-width: 1920px; /* Ensure it doesn't stretch too wide on huge screens */
}

.page-privacy-policy__hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5; /* 1920x600 ratio */
  object-fit: cover;
  object-position: center;
  filter: none; /* Ensure no CSS filter is applied */
}

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

.page-privacy-policy__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.5rem); /* Responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F2FFF6;
  max-width: 600px; /* Added max-width for title */
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__description {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.6;
  color: #A7D9B8;
  max-width: 700px; /* Added max-width for description */
  margin-left: auto;
  margin-right: auto;
}

/* Content Section */
.page-privacy-policy__content-section {
  padding: 40px 0;
}

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

.page-privacy-policy__heading {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #57E38D; /* Glow color for headings */
}

.page-privacy-policy__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #F2FFF6;
}

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 1rem;
}

.page-privacy-policy__list-item strong {
  color: #F2C14E; /* Gold color for strong text in list */
}

.page-privacy-policy__link {
  color: #F2C14E; /* Gold color for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
  color: #57E38D; /* Glow color on hover */
}

/* Image in content */
.page-privacy-policy__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-privacy-policy__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Enforce min-width for images */
  min-height: 200px; /* Enforce min-height for images */
  filter: none; /* Ensure no CSS filter is applied */
}

.page-privacy-policy__image-caption {
  font-size: 0.9rem;
  color: #A7D9B8;
  margin-top: 10px;
}

/* CTA Section */
.page-privacy-policy__cta-section {
  text-align: center;
  margin-top: 50px;
  padding: 30px 20px;
  background-color: #11271B; /* Card BG color */
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-privacy-policy__cta-text {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.page-privacy-policy__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(87, 227, 141, 0.4); /* Glow effect on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__main-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .page-privacy-policy__description {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }
  .page-privacy-policy__heading {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }
  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item,
  .page-privacy-policy__image-caption {
    font-size: 0.95rem;
  }
  .page-privacy-policy__container {
    padding: 0 12px; /* Adjust padding for smaller screens */
  }
  .page-privacy-policy__hero-banner img,
  .page-privacy-policy__image-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  /* Ensure no horizontal scroll */
  .page-privacy-policy {
    max-width: 100%;
    overflow-x: hidden;
  }
  .page-privacy-policy__container {
    max-width: 100%;
  }
}