/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #36454F; /* Carbon Grey for main text */
  background-color: #f8f8f8;
}

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

.page-privacy-policy-hero {
  background-color: #36454F; /* Dark background for hero */
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-privacy-policy-hero h1 {
  font-size: 2.8em;
  color: #DC143C; /* Crimson for hero title */
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

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

.page-privacy-policy-hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

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

.page-privacy-policy-content article {
  margin-bottom: 40px;
  padding: 25px;
  background-color: #fefefe;
  border-left: 5px solid #DC143C; /* Crimson accent */
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-privacy-policy-content h2 {
  font-size: 2em;
  color: #DC143C; /* Crimson for section titles */
  margin-bottom: 15px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.page-privacy-policy-content h3 {
  font-size: 1.5em;
  color: #36454F;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-privacy-policy-content p {
  margin-bottom: 15px;
  color: #36454F;
}

.page-privacy-policy-content ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #36454F;
}

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

.page-privacy-policy-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy-cta-wrapper {
  text-align: center;
  padding: 40px 20px;
  background-color: #f2f2f2;
  border-radius: 8px;
  margin-top: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy-cta-wrapper p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #36454F;
}

.page-privacy-policy-btn {
  display: inline-block;
  background-color: #DC143C; /* Crimson button */
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(220, 20, 60, 0.4);
}

.page-privacy-policy-btn:hover {
  background-color: #a80f2e; /* Darker crimson on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(220, 20, 60, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-privacy-policy-hero h1 {
    font-size: 2em;
  }

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

  .page-privacy-policy-content h2 {
    font-size: 1.7em;
  }

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

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

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

  .page-privacy-policy-content h2 {
    font-size: 1.5em;
  }
}