/* style/gdpr.css */

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

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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles top padding, this is for visual spacing */
  text-align: center;
  overflow: hidden;
  background-color: var(--page-gdpr-deep-green);
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 20px;
  z-index: 1;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--page-gdpr-gold-color);
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.5rem); /* Responsive font size */
}

.page-gdpr__subtitle {
  font-size: 1.15rem;
  color: var(--page-gdpr-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: var(--page-gdpr-button-gradient);
  color: var(--page-gdpr-text-main);
  border: none;
}

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  color: var(--page-gdpr-text-main);
}

.page-gdpr__section-alt-bg {
  background-color: var(--page-gdpr-card-bg);
}

.page-gdpr__section-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--page-gdpr-gold-color);
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__text-block {
  font-size: 1rem;
  color: var(--page-gdpr-text-secondary);
  line-height: 1.7;
}

.page-gdpr__text-block strong {
  color: var(--page-gdpr-text-main);
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
}

.page-gdpr__text-link {
  color: var(--page-gdpr-secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__text-link:hover {
  color: var(--page-gdpr-glow-color);
  text-decoration: underline;
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--page-gdpr-text-secondary);
}

.page-gdpr__list-item {
  margin-bottom: 10px;
}

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

.page-gdpr__image--right {
  margin-left: auto;
  margin-right: 0;
}

.page-gdpr__image--left {
  margin-right: auto;
  margin-left: 0;
}

.page-gdpr__faq-section {
  background-color: var(--page-gdpr-card-bg);
  padding: 60px 20px;
  text-align: center;
  color: var(--page-gdpr-text-main);
  position: relative;
  overflow: hidden;
}

.page-gdpr__faq-list {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: left;
  z-index: 1;
  position: relative;
}

.page-gdpr__faq-item {
  background-color: var(--page-gdpr-background-dark);
  border: 1px solid var(--page-gdpr-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-item[open] {
  background-color: var(--page-gdpr-deep-green);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--page-gdpr-text-main);
  list-style: none;
}

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

.page-gdpr__faq-qtext {
  flex-grow: 1;
  padding-right: 15px;
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--page-gdpr-secondary-color);
}

.page-gdpr__faq-answer {
  padding-top: 15px;
  font-size: 1rem;
  color: var(--page-gdpr-text-secondary);
  line-height: 1.7;
}

.page-gdpr__faq-answer p {
  margin-bottom: 10px;
}

.page-gdpr__image--bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  opacity: 0.1;
  z-index: 0;
  filter: grayscale(100%); /* Maintain original color, but desaturate for background */
  /* IMPORTANT: filter: grayscale(100%) is used here for decorative background image only, not to change original color of main content images. */
}

/* Responsive Styles */
@media (min-width: 769px) {
  .page-gdpr__section-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .page-gdpr__text-block {
    flex: 1;
  }

  .page-gdpr__image {
    flex-shrink: 0;
    width: 400px; /* Example fixed width for desktop */
    margin-left: 40px;
  }

  .page-gdpr__image--right {
    order: 2;
    margin-left: 40px;
    margin-right: 0;
  }

  .page-gdpr__image--left {
    order: 1;
    margin-right: 40px;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-gdpr__subtitle {
    font-size: 1rem;
  }

  .page-gdpr__cta-button {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-gdpr__content-area,
  .page-gdpr__faq-section {
    padding: 40px 15px;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-gdpr__text-block {
    font-size: 0.95rem;
  }

  .page-gdpr__list {
    margin-left: 15px;
  }

  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 30px auto 0 !important;
  }

  .page-gdpr__faq-item {
    padding: 15px 20px;
  }

  .page-gdpr__faq-question {
    font-size: 1rem;
  }

  .page-gdpr__faq-answer {
    font-size: 0.9rem;
  }

  .page-gdpr__section-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-gdpr__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
}