/* style/privacy-policy.css */
.page-privacy-policy {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
}

.page-privacy-policy__section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-privacy-policy__dark-section {
  background-color: var(--bg-card);
}

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

.page-privacy-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  padding-bottom: 60px;
  color: var(--text-main);
  background-color: var(--bg-main);
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.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: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  z-index: 2;
  text-align: center;
}

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

.page-privacy-policy__hero-description {
  font-size: clamp(1em, 1.5vw, 1.25em);
  color: var(--text-main);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-privacy-policy__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

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

.page-privacy-policy__text-block strong {
  color: var(--text-main);
}

.page-privacy-policy__highlight {
  color: var(--gold);
  font-weight: bold;
}

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

.page-privacy-policy__bullet-list {
  list-style: disc inside;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-privacy-policy__sub-list {
  list-style: circle inside;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.page-privacy-policy__list-item {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 10px;
  color: var(--text-main);
}

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

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

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

.page-privacy-policy__note {
  font-style: italic;
  color: var(--text-secondary);
  border-left: 4px solid var(--divider);
  padding-left: 15px;
  margin-top: 30px;
}

.page-privacy-policy__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-privacy-policy__card {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  color: var(--text-main);
  display: flex;
  flex-direction: column;
}

.page-privacy-policy__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-privacy-policy__card-title {
  font-size: 1.6em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 15px;
}

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

.page-privacy-policy__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-privacy-policy__feature-item {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  color: var(--text-main);
}

.page-privacy-policy__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}

.page-privacy-policy__feature-description {
  font-size: 1em;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-privacy-policy__contact-info {
  margin-top: 30px;
  text-align: center;
}

.page-privacy-policy__contact-info p {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--text-main);
}

.page-privacy-policy__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-privacy-policy__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

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

.page-privacy-policy__faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-privacy-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--gold);
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--divider);
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-question {
  border-bottom: 1px solid var(--border);
}

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

.page-privacy-policy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--glow);
  transition: transform 0.3s ease;
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
  transform: rotate(45deg);
}

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

.page-privacy-policy__faq-answer p {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-privacy-policy__hero-image-wrapper {
    max-height: 400px;
  }
  .page-privacy-policy__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-privacy-policy__hero-description {
    font-size: clamp(0.9em, 1.8vw, 1.1em);
  }
  .page-privacy-policy__section-title {
    font-size: clamp(1.6em, 3.5vw, 2.5em);
  }
}

@media (max-width: 768px) {
  .page-privacy-policy__hero-section {
    padding-bottom: 40px;
  }
  .page-privacy-policy__hero-image-wrapper {
    max-height: 300px;
  }
  .page-privacy-policy__hero-content {
    width: 95%;
  }
  .page-privacy-policy__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-privacy-policy__hero-description {
    font-size: clamp(0.85em, 2.5vw, 1em);
  }
  .page-privacy-policy__section {
    padding: 40px 0;
  }
  .page-privacy-policy__container {
    padding: 0 15px;
  }
  .page-privacy-policy__section-title {
    font-size: clamp(1.4em, 4.5vw, 2em);
    margin-bottom: 30px;
  }
  .page-privacy-policy__text-block, .page-privacy-policy__list-item, .page-privacy-policy__feature-description {
    font-size: 1em;
    line-height: 1.7;
  }
  .page-privacy-policy__card-grid, .page-privacy-policy__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-privacy-policy__btn-primary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 20px;
  }
  .page-privacy-policy__content-image, .page-privacy-policy__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-privacy-policy__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-privacy-policy__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-privacy-policy__hero-image-wrapper {
    max-height: 250px;
  }
  .page-privacy-policy__main-title {
    font-size: clamp(1.6em, 7vw, 2.2em);
  }
  .page-privacy-policy__hero-description {
    font-size: clamp(0.8em, 3vw, 0.95em);
  }
  .page-privacy-policy__section {
    padding: 30px 0;
  }
  .page-privacy-policy__section-title {
    font-size: clamp(1.2em, 5.5vw, 1.8em);
    margin-bottom: 25px;
  }
  .page-privacy-policy__card-title {
    font-size: 1.4em;
  }
  .page-privacy-policy__feature-title {
    font-size: 1.3em;
  }
}