/* style/privacy-policy.css */

/* --- General Page Styles --- */
.page-privacy-policy {
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Custom main text color */
  font-family: 'Arial', sans-serif; /* Example font */
  line-height: 1.6;
}

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

/* --- Hero Section --- */
.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image above, text below */
  align-items: center;
  text-align: center;
  padding-bottom: 60px; /* Space below content */
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F;
  overflow: hidden; /* Ensure no image overflow */
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px; /* Space between image and text */
}

.page-privacy-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for better mood */
  border-radius: 8px;
  box-shadow: 0 0 30px #57E38D; /* Custom glow color */
}

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

.page-privacy-policy__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
  color: #F2FFF6; /* Custom main text color */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Custom glow effect */
}

.page-privacy-policy__description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Custom secondary text color */
  margin-bottom: 30px;
}

/* --- CTA Button --- */
.page-privacy-policy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
  box-sizing: border-box;
  max-width: 100%; /* Ensure button fits container */
}

.page-privacy-policy__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button gradient */
  color: #F2FFF6; /* Custom main text color */
  border: none;
  box-shadow: 0 5px 20px rgba(34, 199, 104, 0.4);
}

.page-privacy-policy__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 199, 104, 0.6);
  opacity: 0.9;
}

/* --- Content Area --- */
.page-privacy-policy__content-area {
  padding: 60px 0;
  background-color: #08160F; /* Custom background color */
}

.page-privacy-policy__dark-section {
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Custom main text color */
}

.page-privacy-policy__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #F2C14E; /* Custom gold color */
  font-weight: 700;
  margin-bottom: 40px;
  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: 4px;
  background-color: #0A4B2C; /* Custom deep green color */
  border-radius: 2px;
}

.page-privacy-policy__sub-title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: #F2FFF6; /* Custom main text color */
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 25px;
  position: relative;
  padding-left: 15px;
}

.page-privacy-policy__sub-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 80%;
  background-color: #57E38D; /* Custom glow color */
  border-radius: 2px;
}

.page-privacy-policy__text-block {
  font-size: 1.05rem;
  color: #A7D9B8; /* Custom secondary text color */
  margin-bottom: 20px;
}

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

.page-privacy-policy__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #A7D9B8; /* Custom secondary text color */
}

.page-privacy-policy__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #57E38D; /* Custom glow color */
  font-weight: bold;
  font-size: 1.2rem;
}

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

.page-privacy-policy__contact-link {
  color: #F2C14E; /* Custom gold color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
  color: #57E38D; /* Custom glow color */
  text-decoration: underline;
}

.page-privacy-policy__cta-wrapper {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #11271B; /* Custom card background color */
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  border: 1px solid #2E7A4E; /* Custom border color */
}

.page-privacy-policy__cta-text {
  font-size: 1.3rem;
  color: #F2FFF6; /* Custom main text color */
  margin-bottom: 25px;
  font-weight: 600;
}

/* --- FAQ Section --- */
.page-privacy-policy__faq-section {
  padding: 60px 0;
}

.page-privacy-policy__faq-list {
  margin-top: 40px;
}

.page-privacy-policy__faq-item {
  background-color: #11271B; /* Custom card background color */
  border: 1px solid #2E7A4E; /* Custom border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-privacy-policy__faq-item summary {
  list-style: none; /* Hide default marker */
}

.page-privacy-policy__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Custom main text color */
  cursor: pointer;
  background-color: #11271B; /* Custom card background color */
  transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-question:hover {
  background-color: #0A4B2C; /* Custom deep green color */
}

.page-privacy-policy__faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  color: #57E38D; /* Custom glow color */
  margin-left: 15px;
  line-height: 1;
}

.page-privacy-policy__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Custom secondary text color */
}

/* --- Responsive Styles --- */
@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; /* Small top padding for mobile */
  }

  .page-privacy-policy__hero-image-wrapper {
    max-height: 300px;
    margin-bottom: 20px;
  }

  .page-privacy-policy__main-title {
    font-size: 2rem;
  }

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

  .page-privacy-policy__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-privacy-policy__sub-title {
    font-size: 1.3rem;
    margin-top: 40px;
  }

  .page-privacy-policy__content-area {
    padding: 40px 0;
  }

  .page-privacy-policy__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  /* All containers with images */
  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container,
  .page-privacy-policy__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent content overflow */
  }

  /* Buttons responsive */
  .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__cta-buttons {
    display: flex;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }

  .page-privacy-policy__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-privacy-policy__faq-toggle {
    font-size: 1.5rem;
  }

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

/* Ensure content area images maintain minimum size where possible, but prioritize max-width: 100% for mobile */
.page-privacy-policy__content-area img {
  min-width: 200px; /* Base minimum size */
  min-height: 200px;
}
@media (max-width: 768px) {
    .page-privacy-policy__content-area img {
        min-width: unset; /* Reset min-width on mobile to allow full responsiveness */
        min-height: unset;
    }
}