/* style/privacy-policy.css */

/* Custom Colors */
:root {
  --page-bg: #08160F;
  --card-bg: #11271B;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-privacy-policy {
  background-color: var(--page-bg);
  color: var(--text-main);
  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: 10px 0 60px 0; /* body already handles --header-offset, small top padding for visual */
  text-align: center;
  overflow: hidden;
}

.page-privacy-policy__hero-image-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-privacy-policy__hero-content {
  position: relative; /* Changed from absolute to relative to follow upper-image-lower-text rule */
  max-width: 900px;
  padding: 40px 20px;
  box-sizing: border-box;
  z-index: 1;
  margin-top: -100px; /* Pull content up over the image slightly without overlapping text */
  background: var(--card-bg); /* Use card background for content block */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

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

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

.page-privacy-policy__section-title {
  color: var(--gold-color);
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  padding-top: 30px;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-privacy-policy__sub-title {
  color: var(--glow-color);
  font-size: clamp(1.4em, 2.5vw, 1.8em);
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.page-privacy-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--card-bg);
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-privacy-policy__list-item {
  color: var(--text-main);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-privacy-policy__list-item::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: var(--glow-color);
}

.page-privacy-policy__text-link {
  color: var(--glow-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-privacy-policy__text-link:hover {
  color: var(--gold-color);
  text-decoration: underline;
}

.page-privacy-policy__btn-primary {
  background: var(--btn-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

.page-privacy-policy__image-wrapper {
  margin: 30px 0;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.page-privacy-policy__cta-block {
  background-color: var(--deep-green);
  padding: 40px 20px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
}

.page-privacy-policy__cta-text {
  color: var(--text-main);
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 25px;
}

/* FAQ Section (if applicable, using details/summary) */
.page-privacy-policy__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-privacy-policy__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  color: var(--gold-color);
  font-weight: bold;
  font-size: 1.15em;
  outline: none;
  list-style: none; /* Remove default marker */
}

.page-privacy-policy__faq-item summary::-webkit-details-marker, 
.page-privacy-policy__faq-item summary::marker {
  display: none;
}

.page-privacy-policy__faq-question {
  flex-grow: 1;
}

.page-privacy-policy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow-color);
}

.page-privacy-policy__faq-answer {
  padding: 0 25px 20px 25px;
  color: var(--text-secondary);
  font-size: 1em;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-privacy-policy__hero-content {
    padding: 30px 15px;
    margin-top: -60px;
  }

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

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

  .page-privacy-policy__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    padding-top: 20px;
  }

  .page-privacy-policy__sub-title {
    font-size: clamp(1.2em, 5vw, 1.5em);
    margin-top: 25px;
  }

  .page-privacy-policy__content-area {
    padding: 25px 15px;
    margin-bottom: 25px;
  }

  .page-privacy-policy__text-block, 
  .page-privacy-policy__list-item {
    font-size: 0.95em;
  }

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

  .page-privacy-policy__list-item::before {
    font-size: 0.9em;
  }

  .page-privacy-policy__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
    width: 100%; /* Ensure button takes full width */
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
  }

  .page-privacy-policy__cta-block {
    padding: 30px 15px;
    margin-top: 30px;
  }

  .page-privacy-policy__cta-text {
    font-size: 1.2em;
  }
  
  /* Image and Video Responsiveness */
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-privacy-policy__image-wrapper,
  .page-privacy-policy__hero-image-container,
  .page-privacy-policy__content-area,
  .page-privacy-policy__cta-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-privacy-policy__faq-item summary {
    padding: 15px 20px;
    font-size: 1.0em;
  }

  .page-privacy-policy__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

/* Ensure no filter is used to change image colors */
.page-privacy-policy img {
  filter: none; /* Reset any potential default filters */
}

.page-privacy-policy__hero-image {
  filter: brightness(0.6); /* This is allowed for text readability, not changing core image colors */
}