.page-privacy-policy {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  padding-top: 10px; /* Small top padding as per rules */
  text-align: center;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #D6E2FF;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-height: 450px; /* Constrain hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-privacy-policy__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  z-index: 1;
  position: relative; /* Ensure content is above image wrapper if any z-index interaction */
}

.page-privacy-policy__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 20px;
}

.page-privacy-policy__description {
  font-size: 1.1em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
}

.page-privacy-policy__content-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #F4F7FB; /* Background color */
}

.page-privacy-policy__container {
  background-color: #FFFFFF; /* Card BG */
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border color */
}

.page-privacy-policy__heading {
  color: #2F6BFF; /* Primary color */
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy__heading:first-of-type {
  margin-top: 0;
}

.page-privacy-policy__paragraph {
  margin-bottom: 20px;
  color: #1F2D3D; /* Text Main */
}

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

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  color: #1F2D3D; /* Text Main */
}

.page-privacy-policy__contact-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-privacy-policy__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 150px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__button--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
  color: #FFFFFF;
  border: none;
}

.page-privacy-policy__button--primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slightly inverted gradient for hover */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__button--secondary {
  background-color: #FFFFFF; /* Card BG */
  color: #2F6BFF; /* Primary color */
  border: 1px solid #2F6BFF; /* Primary color */
}

.page-privacy-policy__button--secondary:hover {
  background-color: #F4F7FB; /* Background color */
  color: #2F6BFF;
  border-color: #6FA3FF; /* Auxiliary color */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Ensure images in content area are not too small */
.page-privacy-policy__content-section img {
  min-width: 200px;
  min-height: 200px;
  width: 100%; /* Ensure it fills container */
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy__hero-content {
    padding: 30px 15px;
  }

  .page-privacy-policy__main-title {
    font-size: 2em; /* Adjust for smaller screens, not fixed in rem/em to avoid half-screen on mobile */
  }

  .page-privacy-policy__description {
    font-size: 1em;
  }

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

  .page-privacy-policy__container {
    padding: 25px;
  }

  .page-privacy-policy__heading {
    font-size: 1.5em;
  }

  .page-privacy-policy__list {
    margin-left: 20px;
  }

  .page-privacy-policy__contact-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-privacy-policy__button {
    width: 100%;
  }

  /* Mobile content image constraint to prevent overflow */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
    /* Ensure content area images are not less than 200px, but also responsive */
    /* min-width/height is already set on specific image classes, this ensures max-width */
  }

  .page-privacy-policy__content-section img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__main-title {
    font-size: 1.8em;
  }

  .page-privacy-policy__heading {
    font-size: 1.3em;
  }
}