.page-gdpr {
  color: var(--Text-Main); /* Default text color for the page content */
  background-color: var(--Background); /* Default background color for the page */
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body already handles --header-offset */
  text-align: center;
  background: var(--Background);
  color: var(--Text-Main);
}

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

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

.page-gdpr__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--Text-Main);
  margin-bottom: 20px;
}

.page-gdpr__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--Text-Secondary);
}

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 255, 0, 0.2);
}

.page-gdpr__section {
  padding: 80px 20px;
  background-color: var(--Background);
  color: var(--Text-Main);
}

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

.page-gdpr__heading {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--Text-Main);
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__paragraph {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--Text-Secondary);
}

.page-gdpr__paragraph--light {
  color: var(--Text-Main);
}

.page-gdpr__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__card-section .page-gdpr__card {
  background-color: var(--Card-B-G);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--Border);
  color: var(--Text-Main);
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-gdpr__card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--Text-Main);
  margin-bottom: 15px;
}

.page-gdpr__card-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--Text-Secondary);
}

.page-gdpr__dark-section {
  background-color: var(--Deep-Green);
  color: var(--Text-Main);
}

.page-gdpr__dark-section .page-gdpr__heading {
  color: var(--Text-Main);
}

.page-gdpr__grid--rights {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-gdpr__right-item {
  background-color: var(--Card-B-G);
  border-radius: 10px;
  padding: 25px;
  border: 1px solid var(--Border);
  transition: background-color 0.3s ease;
}

.page-gdpr__right-item:hover {
  background-color: var(--Deep-Green);
}

.page-gdpr__right-title {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--Text-Main);
  margin-bottom: 10px;
}

.page-gdpr__right-text {
  font-size: 0.9em;
  line-height: 1.5;
  color: var(--Text-Secondary);
}

.page-gdpr__text-link {
  color: var(--Glow);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__text-link:hover {
  color: var(--Gold);
}

.page-gdpr__data-collection .page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__data-collection .page-gdpr__list-item {
  background-color: var(--Card-B-G);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--Text-Secondary);
  border-left: 4px solid var(--Glow);
}

.page-gdpr__data-collection .page-gdpr__list-item strong {
  color: var(--Text-Main);
}

.page-gdpr__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__security-item {
  background-color: var(--Background);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  border: 1px solid var(--Divider);
}

.page-gdpr__security-title {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--Text-Main);
  margin-bottom: 10px;
}

.page-gdpr__security-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--Text-Secondary);
}

.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr__faq-item {
  background-color: var(--Card-B-G);
  border: 1px solid var(--Border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--Text-Main);
  transition: background-color 0.3s ease;
}

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

.page-gdpr__faq-item summary:hover {
  background-color: var(--Deep-Green);
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--Glow);
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--Text-Secondary);
}

.page-gdpr__contact-cta {
  text-align: center;
  padding: 100px 20px;
}

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

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

  .page-gdpr__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

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

  .page-gdpr__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }

  .page-gdpr__section,
  .page-gdpr__contact-cta {
    padding: 50px 15px;
  }

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

  .page-gdpr__heading {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-gdpr__grid,
  .page-gdpr__security-grid,
  .page-gdpr__grid--rights {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__card,
  .page-gdpr__right-item,
  .page-gdpr__security-item {
    padding: 20px;
  }

  .page-gdpr__card-image {
    height: 180px;
  }

  .page-gdpr__card-title {
    font-size: 1.3em;
  }

  .page-gdpr__right-title {
    font-size: 1.2em;
  }

  .page-gdpr__faq-item summary {
    font-size: 1em;
    padding: 15px 20px;
  }

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

  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__card-image,
  .page-gdpr__video-container,
  .page-gdpr__video-wrapper,
  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Ensure all content containers have padding for mobile */
  .page-gdpr__section,
  .page-gdpr__card-section,
  .page-gdpr__dark-section,
  .page-gdpr__data-collection,
  .page-gdpr__security-measures,
  .page-gdpr__cookies,
  .page-gdpr__faq {
    padding-left: 15px;
    padding-right: 15px;
  }
}