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

.page-privacy-policy-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFD700, #8B0000);
  color: #ffffff;
}

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

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

.page-privacy-policy-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  max-width: 800px;
}

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

.page-privacy-policy-hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-privacy-policy .cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark Red text */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #FFD700;
}

.page-privacy-policy .cta-button:hover {
  background-color: #8B0000; /* Dark Red on hover */
  color: #FFD700; /* Gold text on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border-color: #FFD700;
}

.page-privacy-policy-content {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: -40px; /* Overlap with hero section */
  position: relative;
  z-index: 10;
}

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

.page-privacy-policy-content h2 {
  font-size: 2.2em;
  color: #8B0000; /* Dark Red for main headings */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700; /* Gold underline */
  padding-bottom: 10px;
  font-weight: bold;
}

.page-privacy-policy-content h3 {
  font-size: 1.6em;
  color: #8B0000; /* Dark Red for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-privacy-policy-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-privacy-policy-content ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #444;
}

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

.page-privacy-policy-content strong {
  color: #8B0000;
}

.page-privacy-policy-content a {
  color: #8B0000;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-privacy-policy-content a:hover {
  color: #FFD700;
}

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

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

.page-privacy-policy .cta-bottom {
  text-align: center;
  background-color: #f9f9f9;
  padding: 40px 20px;
  border-radius: 8px;
  margin-top: 50px;
  border: 1px dashed #FFD700;
}

.page-privacy-policy .cta-bottom h3 {
  color: #8B0000;
  font-size: 2em;
  margin-bottom: 15px;
}

.page-privacy-policy .cta-bottom p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy-hero h1 {
    font-size: 2.4em;
  }
  .page-privacy-policy-hero p {
    font-size: 1.1em;
  }
  .page-privacy-policy-content h2 {
    font-size: 2em;
  }
  .page-privacy-policy-content h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy-hero {
    padding: 40px 15px;
  }
  .page-privacy-policy-hero h1 {
    font-size: 2em;
  }
  .page-privacy-policy-hero p {
    font-size: 1em;
  }
  .page-privacy-policy .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-privacy-policy-content {
    padding: 20px 15px;
    margin-top: -20px;
  }
  .page-privacy-policy-content .content-wrapper {
    padding: 10px;
  }
  .page-privacy-policy-content h2 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-privacy-policy-content h3 {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-privacy-policy-content p, .page-privacy-policy-content ul li {
    font-size: 0.95em;
  }
  .page-privacy-policy .cta-bottom {
    padding: 30px 15px;
  }
  .page-privacy-policy .cta-bottom h3 {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy-hero h1 {
    font-size: 1.6em;
  }
  .page-privacy-policy-hero p {
    font-size: 0.9em;
  }
  .page-privacy-policy .cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-privacy-policy-content h2 {
    font-size: 1.5em;
  }
  .page-privacy-policy-content h3 {
    font-size: 1.2em;
  }
  .page-privacy-policy-content ul {
    margin-left: 15px;
  }
  .page-privacy-policy .cta-bottom h3 {
    font-size: 1.5em;
  }
}