/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for main text on dark background */
  background-color: #0A192F; /* Midnight Blue for page background */
}

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

.page-privacy-policy-hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a2a44 100%); /* Slightly lighter gradient for hero */
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700; /* Gold accent border */
}

.page-privacy-policy-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy-subtitle {
  font-size: 1.2em;
  color: #C0C0C0; /* Lighter grey for subtitle */
  max-width: 700px;
  margin: 0 auto;
}

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

.page-privacy-policy-heading {
  font-size: 2em;
  color: #FFD700; /* Gold for section headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

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

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

.page-privacy-policy-list li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-privacy-policy-highlight {
  color: #FFD700;
  font-weight: bold;
}

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

.page-privacy-policy-image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy-image--left {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}

.page-privacy-policy-image--right {
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
}

.page-privacy-policy-cta-wrapper {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-privacy-policy-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #0A192F; /* Midnight Blue for CTA text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-privacy-policy-cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

/* Responsive adjustments */
@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-image--left, .page-privacy-policy-image--right {
    float: none;
    margin: 20px auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy-hero {
    padding: 50px 0;
  }

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

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

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

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