.page-privacy-policy {
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D; /* Text Main */
  padding-bottom: 40px;
  padding-top: 10px; /* Small top padding to respect body padding-top from shared.css */
}

.page-privacy-policy__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 20px;
  text-align: center;
}

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

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

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

.page-privacy-policy__main-title {
  font-size: clamp(28px, 4vw, 48px); /* Using clamp for responsive font-size */
  font-weight: 700;
  line-height: 1.2;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.page-privacy-policy__hero-description {
  font-size: 1.125rem; /* 18px */
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-privacy-policy__content-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border */
}

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

.page-privacy-policy__section-title {
  font-size: 1.875rem; /* 30px */
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}

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

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

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

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

.page-privacy-policy__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.page-privacy-policy__link {
  color: #2F6BFF; /* Main color for links */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}

.page-privacy-policy__link:hover {
  color: #6FA3FF; /* Auxiliary color on hover */
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 15px;
    margin-bottom: 30px;
  }

  .page-privacy-policy__hero-image-wrapper {
    margin-bottom: 15px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 15px;
  }

  .page-privacy-policy__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

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

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

  .page-privacy-policy__section-title {
    font-size: 1.5rem; /* 24px */
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-privacy-policy__paragraph,
  .page-privacy-policy__list-item {
    font-size: 0.9375rem; /* 15px */
    line-height: 1.6;
  }

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

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