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

  /* RGB versions for rgba() usage */
  --primary-color-rgb: 17, 168, 78;
  --secondary-color-rgb: 34, 199, 104;
  --card-bg-rgb: 17, 39, 27;
  --background-rgb: 8, 22, 15;
  --text-main-rgb: 242, 255, 246;
  --text-secondary-rgb: 167, 217, 184;
  --border-rgb: 46, 122, 78;
  --glow-rgb: 87, 227, 141;
  --gold-rgb: 242, 193, 78;
  --divider-rgb: 30, 58, 42;
  --deep-green-rgb: 10, 75, 44;
}

.page-gdpr {
  font-family: Arial, sans-serif;
  color: var(--text-main); /* Default text color for the page, which is light */
  background-color: var(--background); /* This will be #08160F from shared.css */
}

/* Containers for centering content */
.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--background); /* Dark background */
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-gdpr__hero-content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Adaptive font size, not fixed large */
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main); /* Light text on dark background */
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.page-gdpr__description {
  font-size: 1.2em;
  color: var(--text-secondary); /* Secondary light text */
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-gdpr__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  gap: 20px;
  justify-content: center;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* For responsive buttons */
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: var(--button); /* Gradient button */
  color: var(--text-main); /* Light text on button */
  border: 2px solid transparent;
}

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

.page-gdpr__btn-secondary {
  background-color: transparent;
  color: var(--text-main); /* Light text on dark background */
  border: 2px solid var(--border); /* Green border */
}

.page-gdpr__btn-secondary:hover {
  background-color: rgba(var(--border-rgb), 0.2);
  transform: translateY(-2px);
}

.page-gdpr__hero-image-wrapper {
  margin-top: 40px; /* Space between content and image */
  width: 100%;
  max-width: 1200px; /* Max width for the image */
  display: flex;
  justify-content: center;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  min-height: 200px; /* Min image size */
  max-width: 100%; /* Ensure responsiveness */
  display: block;
}

/* General Section Styles */
.page-gdpr__section {
  padding: 60px 0;
  background-color: var(--background); /* Default background color */
  color: var(--text-main); /* Default text color */
}

.page-gdpr__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--gold); /* Gold color for section titles */
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-main); /* Light text */
}

.page-gdpr__text-block a {
  color: var(--deep-green); /* Link color */
  text-decoration: underline;
}

.page-gdpr__text-block a:hover {
  color: var(--glow);
}

.page-gdpr__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  object-fit: cover;
  min-height: 200px; /* Min image size */
}

/* List Styles */
.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px 0;
}

.page-gdpr__list-item {
  position: relative;
  font-size: 1.1em;
  line-height: 1.8;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text-main); /* Light text */
}

.page-gdpr__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--glow); /* Green checkmark */
  font-weight: bold;
}

/* FAQ Section */
.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr__faq-item {
  background-color: var(--card-bg); /* Darker card background */
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid var(--border); /* Green border */
  color: var(--text-main); /* Light text */
}

.page-gdpr__faq-item details > summary {
  list-style: none; /* Hide default marker */
}

.page-gdpr__faq-item details > summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-main); /* Light text */
}

.page-gdpr__faq-question:hover {
  color: var(--glow); /* Hover effect */
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--glow); /* Green toggle icon */
  margin-left: 15px;
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary); /* Secondary light text for answer */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
}

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

  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-gdpr__hero-content {
    margin-bottom: 30px;
  }

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

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

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__section {
    padding: 40px 0;
  }

  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-gdpr__text-block {
    font-size: 0.95em;
    margin-bottom: 15px;
  }

  .page-gdpr__list-item {
    font-size: 0.95em;
    padding-left: 25px;
  }

  .page-gdpr__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-gdpr__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9em;
  }

  /* Responsive Images */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Responsive Image Containers */
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__image,
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Video containers - general safety for any future video */
  .page-gdpr video,
  .page-gdpr__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__video-section,
  .page-gdpr__video-container,
  .page-gdpr__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-gdpr__video-section {
    padding-top: 10px !important;
  }
}

/* No CSS filters for images */
.page-gdpr img {
  filter: none !important; /* Ensure no filters are applied */
}