/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Default background */
}

.page-privacy-policy__dark-section {
  background-color: #017439; /* Brand primary color */
  color: #ffffff; /* White text for dark background */
}

.page-privacy-policy__hero-section {
  position: relative;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-privacy-policy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__hero-image-wrapper {
  margin-top: 30px;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  border-radius: 8px;
}

.page-privacy-policy__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-privacy-policy__content-section {
  padding: 60px 0;
  background-color: #ffffff; /* Light background for content */
  color: #333333;
}

.page-privacy-policy__section-title {
  font-size: 2em;
  color: #017439; /* Brand primary color for titles */
  margin-bottom: 25px;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
}

.page-privacy-policy__sub-section-title {
  font-size: 1.5em;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
}

.page-privacy-policy__paragraph {
  margin-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: justify;
}

.page-privacy-policy__list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  padding-right: 15px;
}

.page-privacy-policy__list-item {
  margin-bottom: 10px;
}}