.page-privacy-policy {
  font-family: Arial, sans-serif;
  color: var(--text-main, #1F2D3D);
  background-color: var(--background, #F4F7FB);
}

.page-privacy-policy__hero-section {
  padding-top: 10px; /* Small top padding */
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
}

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

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-privacy-policy__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  max-width: 100%; /* Ensure it fits */
}

.page-privacy-policy__intro-text {
  font-size: 1.1em;
  line-height: 1.6;
  color: #E0E7FF;
}

.page-privacy-policy__section-padding {
  padding: 60px 0;
}

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

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: var(--custom-color-1776249996415, #000000);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-privacy-policy__alt-background {
  background-color: var(--card-bg, #FFFFFF);
}

.page-privacy-policy__paragraph {
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-main, #1F2D3D);
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-main, #1F2D3D);
}

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

.page-privacy-policy__list-item strong {
  color: var(--custom-color-1776249996415, #000000);
}

.page-privacy-policy__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-privacy-policy__button {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 20px;
  border-radius: 5px;
  background: var(--button, linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%));
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__button:hover {
  opacity: 0.9;
}

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

  .page-privacy-policy__main-title {
    font-size: 1.8em;
  }

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

  .page-privacy-policy__section-title {
    font-size: 1.8em;
  }

  .page-privacy-policy__section-padding {
    padding: 40px 0;
  }

  .page-privacy-policy__container {
    padding: 0 15px;
  }

  .page-privacy-policy__paragraph, .page-privacy-policy__list-item {
    font-size: 0.95em;
  }

  .page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    margin: 30px auto;
  }

  /* Mandatory for mobile content images to prevent overflow */
  .page-privacy-policy img {
    max-width: 100% !important;
    height: auto !important;
  }
}

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

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

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