:root {
  --primary-color: #007BFF;
  --secondary-color: #FFC107;
  --text-dark: #36454F; /* Charcoal for good contrast on light backgrounds */
  --text-light: #FFFFFF;
  --background-light: #f8f9fa;
  --background-dark: #001f4d;
  --border-color: #e0e0e0;
}

.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

.page-privacy-policy-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-privacy-policy-hero {
  position: relative;
  width: 100%;
  height: 400px; /* Adjusted height for a more impactful hero */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--text-light);
}

.page-privacy-policy-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-privacy-policy-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-privacy-policy-hero-content {
  position: relative;
  z-index: 3;
  padding: 20px;
}

.page-privacy-policy-hero h1 {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy-hero p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-privacy-policy-section:last-of-type {
  border-bottom: none;
}

.page-privacy-policy-section h2 {
  font-size: 2.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-privacy-policy-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-privacy-policy-section h3 {
  font-size: 1.6em;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid var(--secondary-color);
  padding-left: 15px;
}

.page-privacy-policy-section p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-privacy-policy-section ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-privacy-policy-section ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-privacy-policy-content-block {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  border: 1px solid #f0f0f0;
}

.page-privacy-policy-content-block:last-of-type {
  margin-bottom: 0;
}

.page-privacy-policy-image-small {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 10px;
  display: block;
  object-fit: cover;
}

.page-privacy-policy-cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-privacy-policy-cta-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-privacy-policy-hero {
    height: 300px;
  }

  .page-privacy-policy-hero h1 {
    font-size: 2.5em;
  }

  .page-privacy-policy-hero p {
    font-size: 1em;
  }

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

  .page-privacy-policy-section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-privacy-policy-section h3 {
    font-size: 1.4em;
    margin-top: 25px;
  }

  .page-privacy-policy-content-block {
    padding: 20px;
  }

  .page-privacy-policy-cta-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy-hero {
    height: 250px;
  }

  .page-privacy-policy-hero h1 {
    font-size: 2em;
  }

  .page-privacy-policy-hero p {
    font-size: 0.9em;
  }

  .page-privacy-policy-section {
    padding: 30px 0;
  }

  .page-privacy-policy-section h2 {
    font-size: 1.6em;
    margin-bottom: 25px;
  }

  .page-privacy-policy-section h3 {
    font-size: 1.2em;
    margin-top: 20px;
    padding-left: 10px;
  }

  .page-privacy-policy-section ul {
    margin-left: 20px;
  }

  .page-privacy-policy-content-block {
    padding: 15px;
  }
}