/* style/gdpr.css */
/* Base styles for the page-gdpr scope */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px; /* Space below content */
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #11271B; /* Card BG */
  overflow: hidden; /* Ensure hero image doesn't overflow */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit hero image height */
  overflow: hidden;
  position: relative;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly dim the image for text contrast */
}

.page-gdpr__hero-content {
  position: relative; /* Stacks below image in DOM, not overlapping */
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  z-index: 1; /* Ensure content is above any background elements */
  background-color: transparent; /* No background on text block itself */
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.2rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button Gradient */
  color: #F2FFF6; /* Text Main */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Slight inverse on hover */
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-gdpr__dark-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__section-title {
  font-size: 2.5rem;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__text-block {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-gdpr__text-link {
  color: #F2C14E; /* Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__text-link:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-gdpr__highlight {
  color: #57E38D; /* Glow */
  font-weight: bold;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-gdpr__list-item {
  background-color: #0A4B2C; /* Deep Green */
  border-left: 5px solid #F2C14E; /* Gold */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__list-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__list-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-gdpr__data-table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
}

.page-gdpr__data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  overflow: hidden;
}

.page-gdpr__data-table th,
.page-gdpr__data-table td {
  padding: 15px;
  border: 1px solid #1E3A2A; /* Divider */
  text-align: left;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__data-table th {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1rem;
}

.page-gdpr__data-table tr:nth-child(even) {
  background-color: rgba(17, 39, 27, 0.7); /* Slightly lighter card-bg for stripe */
}

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

.page-gdpr__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #1E3A2A; /* Divider */
}

.page-gdpr__faq-item summary {
  list-style: none; /* Remove default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  transition: background-color 0.3s ease;
}

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

.page-gdpr__faq-item summary:hover {
  background-color: rgba(46, 122, 78, 0.3); /* #2E7A4E with transparency */
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: "−"; /* Change symbol when open, handled by JS for older browsers */
}

.page-gdpr__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-gdpr__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-section {
    padding-bottom: 40px;
  }

  .page-gdpr__hero-image-wrapper {
    max-height: 300px;
  }

  .page-gdpr__hero-content {
    padding: 30px 15px;
  }

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

  .page-gdpr__hero-description {
    font-size: 1rem;
  }

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

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

  .page-gdpr__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

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

  .page-gdpr__list-item {
    padding: 15px;
  }

  .page-gdpr__list-title {
    font-size: 1.2rem;
  }

  .page-gdpr__list-description {
    font-size: 0.95rem;
  }

  .page-gdpr__image {
    margin: 30px auto;
  }

  .page-gdpr__data-table th,
  .page-gdpr__data-table td {
    padding: 10px;
    font-size: 0.9rem;
  }

  .page-gdpr__faq-item summary {
    font-size: 1.1rem;
    padding: 15px;
  }

  .page-gdpr__faq-toggle {
    font-size: 1.2rem;
  }

  .page-gdpr__faq-answer {
    padding: 0 15px 15px;
  }

  /* Force responsive for all images and containers with images */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__data-table-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-gdpr__hero-section {
    padding-top: 10px !important; /* body already has padding-top */
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* Ensure buttons are responsive */
  .page-gdpr__cta-button,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    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;
  }

  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  /* Video responsive styles - although no video on this page, include for completeness */
  .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 {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__video-section {
    padding-top: 10px !important;
  }
  .page-gdpr__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Ensure no filter on images */
.page-gdpr img {
  filter: none; /* Reset any potential filter, though hero image has brightness filter for content */
}
.page-gdpr__hero-image {
  filter: brightness(0.6); /* Specific filter for hero to ensure text contrast */
}