/* 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;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px 20px;
  overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
  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;
}

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: 40px;
  padding: 20px;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__main-title {
  color: var(--gold-color);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

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

.page-privacy-policy__btn-primary {
  background: var(--btn-gradient);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
}

.page-privacy-policy__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(var(--glow-color), 0.4);
}

.page-privacy-policy__content-section {
  padding: 60px 20px;
  border-top: 1px solid var(--divider-color);
}

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

.page-privacy-policy__section-title {
  color: var(--gold-color);
  font-weight: bold;
  margin-bottom: 25px;
  margin-top: 40px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

.page-privacy-policy__sub-title {
  color: var(--text-main);
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

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

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

.page-privacy-policy__list-item::before {
  content: '•';
  color: var(--glow-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-privacy-policy__image-with-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.page-privacy-policy__image-with-text--reverse {
  flex-direction: row-reverse;
}

.page-privacy-policy__content-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  max-width: 100%;
  display: block;
}

.page-privacy-policy__text-content {
  flex: 2;
  min-width: 300px;
}

.page-privacy-policy__image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}

.page-privacy-policy__grid-image {
  flex: 1;
  min-width: 250px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  max-width: 100%;
  display: block;
}

.page-privacy-policy__grid-text {
  flex: 2;
  min-width: 300px;
}

.page-privacy-policy__contact-info {
  margin-top: 30px;
  background-color: var(--card-bg);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

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

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

.page-privacy-policy__faq-section {
  margin-top: 50px;
}

.page-privacy-policy__faq-title {
  color: var(--gold-color);
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.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-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  color: var(--text-main);
  font-weight: bold;
  background-color: var(--deep-green);
  transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-question:hover {
  background-color: #0c5c37; /* Slightly lighter deep green on hover */
}

.page-privacy-policy__faq-qtext {
  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-item[open] .page-privacy-policy__faq-toggle {
  content: '−';
}

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

.page-privacy-policy__faq-answer {
  padding: 20px 25px;
  color: var(--text-secondary);
  background-color: var(--card-bg);
  border-top: 1px solid var(--border-color);
}

/* Ensure all content area images are at least 200x200px */
.page-privacy-policy__content-area img,
.page-privacy-policy__image-with-text img,
.page-privacy-policy__image-grid img {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-image {
    height: 500px;
  }

  .page-privacy-policy__hero-content {
    max-width: 700px;
  }

  .page-privacy-policy__image-with-text,
  .page-privacy-policy__image-grid {
    flex-direction: column;
    gap: 20px;
  }

  .page-privacy-policy__content-image,
  .page-privacy-policy__grid-image,
  .page-privacy-policy__text-content,
  .page-privacy-policy__grid-text {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-privacy-policy__hero-image {
    height: 300px;
  }

  .page-privacy-policy__main-title {
    font-size: 1.8em;
    margin-top: 0;
  }

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

  .page-privacy-policy__btn-primary {
    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__content-section {
    padding: 40px 15px;
  }

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

  .page-privacy-policy__content-area,
  .page-privacy-policy__text-block,
  .page-privacy-policy__list-item,
  .page-privacy-policy__faq-question,
  .page-privacy-policy__faq-answer {
    font-size: 0.95em;
  }

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

  .page-privacy-policy__section,
  .page-privacy-policy__card,
  .page-privacy-policy__container,
  .page-privacy-policy__hero-section,
  .page-privacy-policy__image-with-text,
  .page-privacy-policy__image-grid,
  .page-privacy-policy__faq-section,
  .page-privacy-policy__contact-info {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

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