.page-privacy-policy {\n  font-family: 'Arial', sans-serif;\n  line-height: 1.6;\n  color: var(--text-main);\n  background-color: var(--background-color);\n}\n\n.page-privacy-policy__hero-section {\n  position: relative;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  text-align: center;\n  padding: 60px 20px;\n  padding-top: 10px; /* Small top padding, body handles header offset */\n  background-color: var(--deep-green);\n  overflow: hidden;\n}\n\n.page-privacy-policy__hero-image-wrapper {\n  width: 100%;\n  max-width: 1920px;\n  margin-bottom: 20px;\n  display: flex;\n  justify-content: center;\n}\n\n.page-privacy-policy__hero-image {\n  width: 100%;\n  height: auto;\n  object-fit: cover;\n  border-radius: 8px;\n}\n\n.page-privacy-policy__hero-content {\n  position: relative;\n  z-index: 10;\n  max-width: 900px;\n  padding: 0 20px;\n}\n\n.page-privacy-policy__main-title {\n  font-size: 2.5em;\n  font-weight: 700;\n  margin-bottom: 15px;\n  color: var(--text-main);\n  line-height: 1.2;\n  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);\n}\n\n.page-privacy-policy__description {\n  font-size: 1.1em;\n  margin-bottom: 30px;\n  color: var(--text-secondary);\n}\n\n.page-privacy-policy__cta-button {\n  display: inline-block;\n  padding: 15px 30px;\n  background: var(--button-gradient);\n  color: var(--text-main);\n  text-decoration: none;\n  border-radius: 50px;\n  font-weight: 700;\n  font-size: 1.1em;\n  transition: all 0.3s ease;\n  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);\n  border: none;\n}\n\n.page-privacy-policy__cta-button:hover {\n  transform: translateY(-3px);\n  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);\n}\n\n.page-privacy-policy__content-section {\n  padding: 40px 20px;\n}\n\n.page-privacy-policy__dark-bg {\n  background-color: var(--background-color);\n  color: var(--text-main);\n}\n\n.page-privacy-policy__card-bg {\n  background-color: var(--card-bg);\n  color: var(--text-main);\n}\n\n.page-privacy-policy__container {\n  max-width: 1200px;\n  margin: 0 auto;\n  padding: 0 15px;\n}\n\n.page-privacy-policy__section-title {\n  font-size: 2em;\n  font-weight: 700;\n  color: var(--gold);\n  margin-bottom: 30px;\n  text-align: center;\n  position: relative;\n  padding-bottom: 10px;\n}\n\n.page-privacy-policy__section-title::after {\n  content: '';\n  position: absolute;\n  left: 50%;\n  transform: translateX(-50%);\n  bottom: 0;\n  width: 80px;\n  height: 4px;\n  background-color: var(--glow);\n  border-radius: 2px;\n}\n\n.page-privacy-policy__sub-title {\n  font-size: 1.5em;\n  font-weight: 600;\n  color: var(--text-main);\n  margin-top: 30px;\n  margin-bottom: 15px;\n  border-left: 5px solid var(--glow);\n  padding-left: 15px;\n}\n\n.page-privacy-policy__text-block {\n  margin-bottom: 15px;\n  font-size: 1.05em;\n  color: var(--text-secondary);\n}\n\n.page-privacy-policy__highlight {\n  color: var(--glow);\n  font-weight: 600;\n}\n\n.page-privacy-policy__list {\n  list-style-type: disc;\n  margin-left: 25px;\n  margin-bottom: 20px;\n  color: var(--text-secondary);\n}\n\n.page-privacy-policy__list-item {\n  margin-bottom: 10px;\n  color: var(--text-secondary);\n}\n\n.page-privacy-policy__list-item strong {\n  color: var(--text-main);\n}\n\n.page-privacy-policy__image-section {\n  padding: 40px 0;\n  background-color: var(--background-color);\n  text-align: center;\n}\n\n.page-privacy-policy__image-full-width {\n  width: 100%;\n  max-width: 1000px;\n  height: auto;\n  object-fit: cover;\n  border-radius: 8px;\n  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);\n}\n\n.page-privacy-policy__faq-item {\n  background-color: var(--deep-green);\n  border: 1px solid var(--border-color);\n  border-radius: 8px;\n  margin-bottom: 15px;\n  overflow: hidden;\n  transition: all 0.3s ease;\n}\n\n.page-privacy-policy__faq-item[open] {\n  box-shadow: 0 0 15px rgba(87, 227, 141, 0.3);\n}\n\n.page-privacy-policy__faq-question {\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n  padding: 20px 25px;\n  font-size: 1.2em;\n  font-weight: 600;\n  color: var(--text-main);\n  cursor: pointer;\n  background-color: var(--deep-green);\n  border-bottom: 1px solid var(--divider);\n}\n\n.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-question {\n  border-bottom: 1px solid var(--divider);\n}\n\n.page-privacy-policy__faq-qtext {\n  flex-grow: 1;\n}\n\n.page-privacy-policy__faq-toggle {\n  font-size: 1.5em;\n  line-height: 1;\n  margin-left: 15px;\n  color: var(--glow);\n  transition: transform 0.3s ease;\n}\n\n.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {\n  transform: rotate(45deg);\n}\n\n.page-privacy-policy__faq-answer {\n  padding: 0 25px 20px;\n  font-size: 1.05em;\n  color: var(--text-secondary);\n  background-color: var(--card-bg);\n}\n\n.page-privacy-policy__faq-answer p {\n  margin-top: 15px;\n  margin-bottom: 0;\n}\n\n.page-privacy-policy__faq-item summary::-webkit-details-marker {\n  display: none;\n}\n\n.page-privacy-policy__faq-item summary {\n  list-style: none;\n}\n\n.page-privacy-policy__contact-list {\n  list-style-type: none;\n  padding-left: 0;\n  margin-top: 20px;\n}\n\n.page-privacy-policy__contact-item {\n  margin-bottom: 10px;\n  font-size: 1.1em;\n  color: var(--text-secondary);\n}\n\n.page-privacy-policy__contact-item strong {\n  color: var(--text-main);\n}\n\n/* Responsive Styles */\n@media (max-width: 1024px) {\n  .page-privacy-policy__main-title {\n    font-size: 2em;\n  }\n  .page-privacy-policy__section-title {\n    font-size: 1.8em;\n  }\n  .page-privacy-policy__sub-title {\n    font-size: 1.3em;\n  }\n}\n\n@media (max-width: 768px) {\n  .page-privacy-policy__hero-section {\n    padding: 40px 15px;\n    padding-top: 10px !important; /* body handles header offset */\n  }\n  .page-privacy-policy__hero-content {\n    padding: 0 15px;\n  }\n  .page-privacy-policy__main-title {\n    font-size: 1.8em;\n    line-height: 1.3;\n  }\n  .page-privacy-policy__description {\n    font-size: 1em;\n  }\n  .page-privacy-policy__cta-button {\n    padding: 12px 25px;\n    font-size: 1em;\n    max-width: 100% !important;\n    width: 100% !important;\n    box-sizing: border-box !important;\n    white-space: normal !important;\n    word-wrap: break-word !important;\n  }\n  .page-privacy-policy__content-section {\n    padding: 30px 0;\n  }\n  .page-privacy-policy__container {\n    padding: 0 15px;\n  }\n  .page-privacy-policy__section-title {\n    font-size: 1.6em;\n    margin-bottom: 25px;\n  }\n  .page-privacy-policy__sub-title {\n    font-size: 1.2em;\n    margin-top: 25px;\n  }\n  .page-privacy-policy__text-block, .page-privacy-policy__list-item, .page-privacy-policy__faq-answer p, .page-privacy-policy__contact-item {\n    font-size: 0.95em;\n  }\n  .page-privacy-policy__faq-question {\n    font-size: 1.1em;\n    padding: 15px 20px;\n  }\n  .page-privacy-policy img {\n    max-width: 100% !important;\n    width: 100% !important;\n    height: auto !important;\n  }\n  .page-privacy-policy__image-section {\n    padding: 30px 15px;\n  }\n  .page-privacy-policy__image-full-width {\n    max-width: 100% !important;\n    width: 100% !important;\n    box-sizing: border-box !important;\n  }\n  .page-privacy-policy__hero-image-wrapper, .page-privacy-policy__container, .page-privacy-policy__image-section {\n    max-width: 100% !important;\n    width: 100% !important;\n    box-sizing: border-box !important;\n  }\n}\n