.page-privacy-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--bg);
}

.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background: var(--bg-card);
  overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

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

.page-privacy-policy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

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

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

.page-privacy-policy__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

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

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

.page-privacy-policy__medium-bg {
  background: var(--bg);
  color: var(--text-main);
}

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

.page-privacy-policy__section-title {
  font-size: 2.2em;
  color: var(--gold);
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

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

.page-privacy-policy__image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.page-privacy-policy__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

.page-privacy-policy__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
}

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

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

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

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

.page-privacy-policy__faq-section {
  padding: 60px 20px;
  background: var(--bg-card);
  color: var(--text-main);
  text-align: center;
}

.page-privacy-policy__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

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

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

.page-privacy-policy__faq-question:hover {
  background: var(--main-color);
}

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

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

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

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

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

/* Clear floats */
.page-privacy-policy__content-area::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-privacy-policy__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }

  .page-privacy-policy__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-privacy-policy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-privacy-policy__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-privacy-policy__hero-content {
    padding: 10px;
  }

  .page-privacy-policy__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-privacy-policy__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-privacy-policy__btn-primary {
    padding: 10px 20px;
  }

  .page-privacy-policy__section {
    padding: 40px 15px;
  }

  .page-privacy-policy__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

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

  .page-privacy-policy__image {
    float: none;
    margin: 20px auto !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-privacy-policy__image--left,
  .page-privacy-policy__image--right {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .page-privacy-policy__faq-section {
    padding: 40px 15px;
  }

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

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

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

  .page-privacy-policy__content-area,
  .page-privacy-policy__hero-section,
  .page-privacy-policy__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-privacy-policy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .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;
  }
}