.page-privacy-policy {
  background-color: #F4F7FB;
  color: #1F2D3D;
  line-height: 1.6;
  padding-top: 10px; /* Small padding to avoid overlapping with fixed header */
}

.page-privacy-policy__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #D6E2FF;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__hero-content {
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.page-privacy-policy__main-title {
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 20px;
  /* Using clamp for responsive font size, avoiding fixed large values */
  font-size: clamp(28px, 4vw, 48px);
}

.page-privacy-policy__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-privacy-policy__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-privacy-policy__content-area {
  padding: 50px 20px;
}

.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section-heading {
  font-size: 2.2em;
  color: #2F6BFF;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-privacy-policy__sub-heading {
  font-size: 1.6em;
  color: #1F2D3D;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

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

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

.page-privacy-policy__image-block {
    text-align: center;
    margin: 30px 0;
}

.page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px; /* Enforce minimum display size */
}

.page-privacy-policy__contact-info {
  margin-bottom: 10px;
  color: #1F2D3D;
}

.page-privacy-policy__contact-link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 500;
}

.page-privacy-policy__contact-link:hover {
  text-decoration: underline;
}

.page-privacy-policy__action-buttons {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-privacy-policy__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease-in-out;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-privacy-policy__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

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

  .page-privacy-policy__main-title {
    font-size: clamp(24px, 6vw, 36px); /* Adjust clamp for smaller screens */
  }

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

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

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

  .page-privacy-policy__section-heading {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-privacy-policy__sub-heading {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    /* Enforce min-width/height for content images on mobile too */
    min-width: 200px;
    min-height: 200px;
  }

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

  .page-privacy-policy__cta-button, .page-privacy-policy__button {
    width: 100%;
    max-width: 300px; /* Constrain button width on small screens */
    margin: 0 auto;
  }

  /* Ensure no horizontal scroll for content images */
  .page-privacy-policy img {
    max-width: 100%;
    height: auto;
  }
}