.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark grey for readability on light backgrounds */
  background-color: #f8f8f8; /* Light background */
}

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

.page-privacy-policy__hero {
  background: linear-gradient(135deg, #003366, #1a4d80); /* Dark blue gradient */
  color: #ffffff; /* White text on dark background */
  padding: 80px 0;
  text-align: center;
}

.page-privacy-policy__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: bold;
}

.page-privacy-policy__subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  color: #e0e0e0;
}

.kv999-highlight {
  color: #FFCC00; /* Golden yellow for highlights */
}

.kv999-text {
  color: #003366; /* Deep blue for kv999 brand text in content */
  font-weight: bold;
}

.page-privacy-policy__content-section {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-privacy-policy__article {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__heading {
  font-size: 2em;
  color: #003366; /* Deep blue for headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFCC00; /* Golden yellow underline */
  padding-bottom: 10px;
}

.page-privacy-policy__article p {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.7;
}

.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;
  color: #555555;
}

.page-privacy-policy__contact-link {
  color: #003366; /* Deep blue for links */
  text-decoration: underline;
  font-weight: bold;
}

.page-privacy-policy__contact-link:hover {
  color: #FFCC00; /* Golden yellow on hover */
}

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

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

.page-privacy-policy__call-to-action {
  background-color: #FFCC00; /* Golden yellow background */
  color: #003366; /* Deep blue text on golden background */
  padding: 60px 0;
  text-align: center;
}

.page-privacy-policy__cta-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #003366;
  font-weight: bold;
}

.page-privacy-policy__cta-text {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #333333;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #003366; /* Deep blue button */
  color: #ffffff; /* White text on blue button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #003366;
}

.page-privacy-policy__cta-button:hover {
  background-color: #002244; /* Darker blue on hover */
  transform: translateY(-2px);
  border-color: #002244;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-privacy-policy__title {
    font-size: 2em;
  }
  .page-privacy-policy__subtitle {
    font-size: 1em;
  }
  .page-privacy-policy__heading {
    font-size: 1.6em;
  }
  .page-privacy-policy__article {
    padding: 20px;
  }
  .page-privacy-policy__cta-title {
    font-size: 2em;
  }
  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__title {
    font-size: 1.8em;
  }
  .page-privacy-policy__subtitle {
    font-size: 0.9em;
  }
  .page-privacy-policy__heading {
    font-size: 1.4em;
  }
  .page-privacy-policy__article {
    padding: 15px;
  }
  .page-privacy-policy__cta-title {
    font-size: 1.8em;
  }
}