/* style/privacy-policy.css */

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

.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: var(--f79-text-main); /* Default text color for dark body background */
  background-color: var(--f79-bg-dark);
}

.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 */
  box-sizing: border-box;
  overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for hero image */
  margin-bottom: 30px;
}

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

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

.page-privacy-policy__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--f79-text-main);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--f79-text-secondary);
  margin-bottom: 30px;
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-privacy-policy__btn-primary {
  background: var(--f79-btn-gradient);
  color: var(--f79-text-main);
  border: none;
  margin-right: 15px;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

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

.page-privacy-policy__btn-secondary {
  background: transparent;
  color: var(--f79-primary-color);
  border: 2px solid var(--f79-primary-color);
}

.page-privacy-policy__btn-secondary:hover {
  background: rgba(17, 168, 78, 0.1);
  color: var(--f79-secondary-color);
  border-color: var(--f79-secondary-color);
  transform: translateY(-2px);
}

.page-privacy-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--f79-bg-dark);
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.page-privacy-policy__section-title {
  font-size: 2.2rem;
  color: var(--f79-primary-color);
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.page-privacy-policy__sub-section-title {
  font-size: 1.6rem;
  color: var(--f79-secondary-color);
  margin-top: 35px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.4;
}

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

.page-privacy-policy__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--f79-text-secondary);
}

.page-privacy-policy__list-item {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.page-privacy-policy__list-item strong {
  color: var(--f79-text-main);
}

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

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

.page-privacy-policy__contact-link:hover {
  text-decoration: underline;
  color: var(--f79-secondary-color);
}

.page-privacy-policy__faq-section {
  margin-top: 40px;
  border-top: 1px solid var(--f79-divider-color);
  padding-top: 20px;
}

.page-privacy-policy__faq-item {
  background-color: var(--f79-card-bg);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: var(--f79-text-main);
}

.page-privacy-policy__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--f79-text-main);
  background-color: var(--f79-deep-green);
  border-bottom: 1px solid var(--f79-border-color);
}

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

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

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

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  content: '−';
}

.page-privacy-policy__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--f79-text-secondary);
  background-color: var(--f79-card-bg);
}

.page-privacy-policy__faq-answer p {
  margin-bottom: 0;
}

.page-privacy-policy__cta-section {
  background: var(--f79-card-bg);
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 50px auto;
  max-width: 1000px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}

.page-privacy-policy__cta-title {
  font-size: 2.5rem;
  color: var(--f79-gold-color);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__cta-description {
  font-size: 1.1rem;
  color: var(--f79-text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-privacy-policy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-content {
    padding: 0 15px;
  }
  .page-privacy-policy__main-title {
    font-size: 2.5rem;
  }
  .page-privacy-policy__section-title {
    font-size: 2rem;
  }
  .page-privacy-policy__sub-section-title {
    font-size: 1.4rem;
  }
  .page-privacy-policy__cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Ensure small top padding */
  }
  .page-privacy-policy__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-privacy-policy__main-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem); /* Use clamp for H1 */
    margin-bottom: 15px;
  }
  .page-privacy-policy__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-privacy-policy__btn-primary,
  .page-privacy-policy__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }
  .page-privacy-policy__btn-primary {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-privacy-policy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-privacy-policy__content-area {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-privacy-policy__section-title {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-privacy-policy__sub-section-title {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
  }
  .page-privacy-policy__text-block,
  .page-privacy-policy__list-item,
  .page-privacy-policy__faq-answer p {
    font-size: 0.95rem;
  }
  .page-privacy-policy__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px 0;
  }
  .page-privacy-policy__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-privacy-policy__faq-answer {
    padding: 15px 20px;
  }
  .page-privacy-policy__cta-section {
    padding: 40px 15px;
    margin: 30px auto;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-privacy-policy__cta-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .page-privacy-policy__cta-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  /* Ensure all image containers are responsive */
  .page-privacy-policy__image-container,
  .page-privacy-policy__card,
  .page-privacy-policy__section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-privacy-policy__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-privacy-policy__cta-buttons {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}