/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-privacy-policy-hero {
  background: linear-gradient(135deg, #1A237E 0%, #39439f 100%); /* Dark blue gradient */
  color: #fff;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-privacy-policy-hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.15;
  max-width: 300px;
  height: auto;
  z-index: 0;
}

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

.page-privacy-policy-subtitle {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.page-privacy-policy-section {
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

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

.page-privacy-policy-heading {
  font-size: 2em;
  color: #1A237E; /* Deep blue for headings */
  margin-bottom: 25px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
  line-height: 1.2;
}

.page-privacy-policy-paragraph {
  font-size: 1em;
  margin-bottom: 15px;
  color: #444;
}

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

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

.page-privacy-policy-list-item strong {
  color: #1A237E;
}

.page-privacy-policy-link {
  color: #1A237E;
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy-link:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-privacy-policy-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Deep blue text on gold */
  padding: 12px 25px;
  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;
  border: none;
  cursor: pointer;
}

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

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

/* 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-hero-image {
    max-width: 200px;
    opacity: 0.1;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy-container {
    padding: 15px;
  }

  .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-list {
    margin-left: 20px;
  }

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