/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  background-color: #0A4B2C; /* Deep Green for hero background */
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-privacy-policy__hero-content {
  z-index: 1;
  position: relative;
  max-width: 800px;
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 3.5vw, 3em);
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-privacy-policy__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-privacy-policy__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-privacy-policy__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__content-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-privacy-policy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #2AD16F; /* A lighter shade of primary for accent */
  border-radius: 2px;
}

.page-privacy-policy__sub-title {
  font-size: 1.7em;
  color: #22C768; /* Auxiliary Color */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #F2C14E; /* Gold */
  padding-left: 15px;
}

.page-privacy-policy__text-block {
  font-size: 1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}