/* style/privacy-policy.css */

/* --- General Page Styles --- */
.page-privacy-policy {
  background-color: var(--background, #08160F); /* Fallback to custom background color if --background is not defined */
  color: var(--text-main, #F2FFF6); /* Main text color */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-bottom: 50px; /* Space before footer */
}

/* Ensure headings inherit main text color or use specific ones */
.page-privacy-policy h1,
.page-privacy-policy h2,
.page-privacy-policy h3,
.page-privacy-policy h4,
.page-privacy-policy h5,
.page-privacy-policy h6 {
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-privacy-policy p {
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
}

.page-privacy-policy strong {
  color: var(--text-main, #F2FFF6);
}

.page-privacy-policy a {
  color: var(--glow, #57E38D); /* Link color */
  text-decoration: none;
}

.page-privacy-policy a:hover {
  text-decoration: underline;
}

/* --- Hero Section --- */
.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--background, #08160F);
}

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

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

.page-privacy-policy__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-privacy-policy__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem); /* H1 font size with clamp */
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--gold, #F2C14E); /* Gold for main title */
}

.page-privacy-policy__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-secondary, #A7D9B8);
}

/* --- Content Area --- */
.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background, #08160F);
  border-radius: 10px;
}

.page-privacy-policy__section-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-main, #F2FFF6);
  border-bottom: 2px solid var(--divider, #1E3A2A);
  padding-bottom: 10px;
}

.page-privacy-policy__text-block {
  margin-bottom: 20px;
  color: var(--text-main, #F2FFF6);
}

.page-privacy-policy__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-main, #F2FFF6);
}

.page-privacy-policy__list-item {
  margin-bottom: 10px;
  color: var(--text-main, #F2FFF6);
}

.page-privacy-policy__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* --- CTA Section --- */
.page-privacy-policy__cta-section {
  background: linear-gradient(180deg, var(--deep-green, #0A4B2C) 0%, var(--background, #08160F) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  max-width: 1200px;
  margin: 40px auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__cta-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--gold, #F2C14E);
}

.page-privacy-policy__cta-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-secondary, #A7D9B8);
}

.page-privacy-policy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* --- Buttons --- */
.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
  box-sizing: border-box; /* Ensure padding doesn't push width */
  max-width: 100%; /* For responsive buttons */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text break */
}

.page-privacy-policy__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text for contrast */
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-privacy-policy__btn-secondary {
  background-color: transparent;
  color: var(--glow, #57E38D); /* Glow color for secondary button text */
  border: 2px solid var(--glow, #57E38D);
  box-shadow: none;
}

.page-privacy-policy__btn-secondary:hover {
  background-color: var(--glow, #57E38D);
  color: var(--deep-green, #0A4B2C); /* Darker text on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

  .page-privacy-policy__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Ensure small top padding */
  }

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

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

  .page-privacy-policy__description {
    font-size: 1rem;
  }

  .page-privacy-policy__content-area,
  .page-privacy-policy__cta-section {
    padding: 30px 15px;
    margin: 30px auto;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-privacy-policy__section-title {
    font-size: 1.5rem;
    margin-top: 30px;
  }

  .page-privacy-policy__list {
    margin-left: 20px;
  }

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

  /* Video responsive (if any, though none on this page) */
  .page-privacy-policy video,
  .page-privacy-policy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-privacy-policy__video-section,
  .page-privacy-policy__video-container,
  .page-privacy-policy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

  .page-privacy-policy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Buttons responsive */
  .page-privacy-policy__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
  }

  .page-privacy-policy__btn-primary,
  .page-privacy-policy__btn-secondary {
    width: 100% !important; /* Full width buttons */
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}

/* Ensure contrast for text on card-like elements if background changes */
.page-privacy-policy__card-bg { /* Example for potential card background */
  background-color: var(--card-bg, #11271B);
  color: var(--text-main, #F2FFF6);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}