/* style/privacy-policy.css */

/* --- General Page Styles --- */
.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text on light background */
  background-color: var(--auxiliary-color); /* #FFFFFF */
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-privacy-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-privacy-policy__section-heading {
  font-size: 2.5em;
  color: var(--primary-color); /* #017439 */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  font-weight: bold;
}

.page-privacy-policy__section-heading--dark {
  color: #ffffff; /* White text on dark background */
}

.page-privacy-policy__sub-heading {
  font-size: 1.8em;
  color: var(--primary-color); /* #017439 */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-privacy-policy__sub-heading--dark {
  color: #ffffff; /* White text on dark background */
}

.page-privacy-policy__paragraph {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333333;
}

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

.page-privacy-policy__list--dark {
  color: #f0f0f0; /* Lighter text on dark background */
}

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

/* --- Section Specific Styles --- */
.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 80px; /* Adjusted padding-top is on .page-privacy-policy */
  background: linear-gradient(135deg, var(--primary-color), #FFFFFF);
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-privacy-policy__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1; /* Ensure content is above any potential background effect */
}

.page-privacy-policy__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff; /* White text on hero gradient */
  padding: 0 15px;
}

.page-privacy-policy__main-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff; /* White text */
}

.page-privacy-policy__intro-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0; /* Slightly off-white for contrast */
}

.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #C30808; /* Use custom color for register */
  color: #FFFF00; /* Use custom color for register font */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-privacy-policy__cta-button:hover {
  background: #E00A0A; /* Slightly lighter red on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__content-section {
  padding: 60px 0;
}