:root {
  --primary-color: #0A2239;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f4f7f6;
  --bg-dark: #1a3a5a;
}

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

.page-privacy-policy-hero-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5a 100%); /* Slightly lighter dark blue for gradient */
  color: var(--text-light);
  text-align: center;
}

.page-privacy-policy-hero-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-privacy-policy-hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-privacy-policy-main-title {
  font-size: 3.2em;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy-hero-description {
  font-size: 1.3em;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-privacy-policy-content-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.page-privacy-policy-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy-article p {
  margin-bottom: 1.5em;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-privacy-policy-article strong {
  color: var(--primary-color);
}

.page-privacy-policy-heading {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid var(--secondary-color);
  padding-bottom: 10px;
  font-weight: bold;
}

.page-privacy-policy-sub-heading {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy-list {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 1.5em;
  font-size: 1.05em;
  color: var(--text-dark);
}

.page-privacy-policy-list li {
  margin-bottom: 10px;
}

.page-privacy-policy-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-privacy-policy-image-fullwidth {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-privacy-policy-cta-wrapper {
  background-color: var(--bg-dark);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-privacy-policy-cta-text {
  font-size: 1.5em;
  color: var(--text-light);
  margin-bottom: 25px;
  font-weight: 500;
}

.page-privacy-policy-cta-button {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy-cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-privacy-policy-main-title {
    font-size: 2.8em;
  }

  .page-privacy-policy-hero-description {
    font-size: 1.2em;
  }

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

  .page-privacy-policy-sub-heading {
    font-size: 1.5em;
  }

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

@media (max-width: 768px) {
  .page-privacy-policy-hero-section {
    padding: 60px 0;
  }

  .page-privacy-policy-main-title {
    font-size: 2.2em;
  }

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

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

  .page-privacy-policy-container {
    width: 95%;
    padding: 20px;
  }

  .page-privacy-policy-heading {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-privacy-policy-sub-heading {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-privacy-policy-article p, .page-privacy-policy-list {
    font-size: 1em;
  }

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

  .page-privacy-policy-cta-wrapper {
    padding: 30px;
  }

  .page-privacy-policy-cta-text {
    font-size: 1.3em;
  }

  .page-privacy-policy-cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

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

  .page-privacy-policy-hero-description {
    font-size: 0.95em;
  }

  .page-privacy-policy-heading {
    font-size: 1.6em;
  }

  .page-privacy-policy-sub-heading {
    font-size: 1.2em;
  }

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

  .page-privacy-policy-list {
    margin-left: 15px;
  }

  .page-privacy-policy-cta-text {
    font-size: 1.1em;
  }

  .page-privacy-policy-cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }
}