.page-privacy-policy {
  color: var(--text-main);
  background-color: var(--bg-color);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  color: #ffffff;
}

.page-privacy-policy__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-privacy-policy__description {
  font-size: clamp(1em, 2vw, 1.2em);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.page-privacy-policy__section {
  padding: 60px 20px;
  border-bottom: 1px solid var(--divider);
}

.page-privacy-policy__section:last-of-type {
  border-bottom: none;
}

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

.page-privacy-policy__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: var(--text-main);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.page-privacy-policy__section-title--light {
  color: var(--text-main);
}

.page-privacy-policy__text-block {
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-privacy-policy__text-block--light {
  color: var(--text-secondary);
}

.page-privacy-policy__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-privacy-policy__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: var(--text-secondary);
}

.page-privacy-policy__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--primary-color); /* Use primary color for checkmark */
  font-weight: bold;
}

.page-privacy-policy__list-item--light {
  color: var(--text-secondary);
}

.page-privacy-policy__list-item--light::before {
  color: var(--primary-color);
}

.page-privacy-policy__image-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-privacy-policy__image-content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-privacy-policy__content-block {
  flex: 1;
  min-width: 300px;
}

.page-privacy-policy__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-privacy-policy__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.page-privacy-policy__dark-section {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-privacy-policy__contact-info {
  margin-top: 30px;
  text-align: center;
}

.page-privacy-policy__contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-privacy-policy__contact-link:hover {
  text-decoration: underline;
}

.page-privacy-policy__cta-button--contact {
  margin-top: 40px;
}

/* Ensure proper color contrast for links within text blocks */
.page-privacy-policy__text-block a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-privacy-policy__text-block a:hover {
  color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

  .page-privacy-policy__description {
    font-size: clamp(0.9em, 3vw, 1.1em);
  }

  .page-privacy-policy__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
  }

  .page-privacy-policy__hero-section {
    padding-bottom: 40px;
  }

  .page-privacy-policy__hero-content {
    padding: 20px 15px;
  }

  .page-privacy-policy__section {
    padding: 40px 15px;
  }

  .page-privacy-policy__container {
    padding: 0 10px;
  }

  .page-privacy-policy__image-content-wrapper {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }

  .page-privacy-policy__image-content-wrapper--reversed {
    flex-direction: column;
  }

  .page-privacy-policy__content-block, .page-privacy-policy__image-wrapper {
    min-width: unset;
    width: 100%;
  }

  .page-privacy-policy__cta-button,
  .page-privacy-policy__cta-button--contact,
  .page-privacy-policy a[class*="button"],
  .page-privacy-policy a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-privacy-policy__cta-buttons,
  .page-privacy-policy__button-group,
  .page-privacy-policy__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-privacy-policy__hero-section {
    padding-top: 10px !important;
  }

  /* Image responsive rules */
  .page-privacy-policy img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Color scheme from provided custom colors */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --bg-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* Apply custom colors */
.page-privacy-policy__section-title,
.page-privacy-policy__main-title {
  color: var(--text-main);
}

.page-privacy-policy__text-block,
.page-privacy-policy__list-item,
.page-privacy-policy__description {
  color: var(--text-secondary);
}

.page-privacy-policy__dark-section {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-privacy-policy__cta-button {
  background: var(--button-gradient);
  color: #ffffff;
}

.page-privacy-policy__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Adjusted hover for consistency */
}

.page-privacy-policy__list-item::before {
  color: var(--primary-color);
}

.page-privacy-policy__text-block a,
.page-privacy-policy__contact-link {
  color: var(--primary-color);
}

.page-privacy-policy__text-block a:hover,
.page-privacy-policy__contact-link:hover {
  color: var(--secondary-color);
}

/* Ensure contrast for text within dark sections */
.page-privacy-policy__dark-section .page-privacy-policy__text-block,
.page-privacy-policy__dark-section .page-privacy-policy__list-item {
  color: var(--text-secondary);
}

.page-privacy-policy__dark-section .page-privacy-policy__section-title--light {
  color: var(--text-main);
}

/* Fallback for body text color if shared.css doesn't set it */
body {
  color: var(--text-secondary);
  background-color: var(--bg-color);
}