.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--auxiliary-color); /* Matches body background */
}

.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background: linear-gradient(135deg, #26A9E0 0%, #007bff 100%); /* Use primary color for hero */
  color: #ffffff; /* White text on dark background */
  min-height: 400px;
}

.page-privacy-policy__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-privacy-policy__hero-title {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-privacy-policy__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #EA7C07; /* Login color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-privacy-policy__cta-button:hover {
  background: #d66e06;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__content-area {
  max-width: 100%; /* Ensure full width on small screens */
  margin: 0 auto;
  padding: 60px 20px;
  background: #FFFFFF; /* Light background for content */
  color: #333333; /* Dark text for light background */
  box-sizing: border-box;
}

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

.page-privacy-policy__section-title {
  font-size: 28px;
  color: #26A9E0; /* Primary color for titles */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.3;
}

.page-privacy-policy__sub-section-title {
  font-size: 22px;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-privacy-policy__paragraph a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-privacy-policy__paragraph a:hover {
  color: #1a7bb7;
}

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

.page-privacy-policy__list li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.page-privacy-policy__list li strong {
  color: #26A9E0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-title {
    font-size: 38px;
  }
  .page-privacy-policy__hero-description {
    font-size: 17px;
  }
  .page-privacy-policy__section-title {
    font-size: 26px;
  }
  .page-privacy-policy__sub-section-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }
  .page-privacy-policy__hero-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .page-privacy-policy__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-privacy-policy__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-privacy-policy__content-area {
    padding: 40px 15px;
  }
  .page-privacy-policy__section-title {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-privacy-policy__sub-section-title {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-privacy-policy__paragraph,
  .page-privacy-policy__list li {
    font-size: 15px;
  }
  
  /* Image responsive rules for mobile */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-privacy-policy__hero-container,
  .page-privacy-policy__content-area,
  .page-privacy-policy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}