.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from shared.css, explicitly set for context */
}

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

.page-gdpr__hero-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #1A2A4A, #3A4A6A);
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Apply header offset here if body doesn't have it */
}

.page-gdpr__main-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-gdpr__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-gdpr__btn-primary {
  background-color: #FFD700;
  color: #1A2A4A;
  border: 2px solid #FFD700;
}

.page-gdpr__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-gdpr__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gdpr__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2A4A;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-gdpr__content-section,
.page-gdpr__principles-section,
.page-gdpr__user-rights-section,
.page-gdpr__data-protection-measures,
.page-gdpr__cookies-policy,
.page-gdpr__faq-section,
.page-gdpr__contact-section {
  padding: 60px 0;
}

.page-gdpr__dark-bg {
  background-color: #1A2A4A;
  color: #ffffff;
}

.page-gdpr__light-bg {
  background-color: #f0f0f0;
  color: #333333;
}

.page-gdpr__text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-gdpr__text-block--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__text-block p {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-gdpr__image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-gdpr__intro-text {
  text-align: center;
  font-size: 1.15em;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

.page-gdpr__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__list-item h3 {
  color: #FFD700;
  margin-top: 0;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-gdpr__list-item p {
  color: #ffffff;
  font-size: 1em;
}

.page-gdpr__light-bg .page-gdpr__list-item {
  background-color: #ffffff;
  color: #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__light-bg .page-gdpr__list-item h3 {
  color: #1A2A4A;
}

.page-gdpr__light-bg .page-gdpr__list-item p {
  color: #333333;
}

.page-gdpr__list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-gdpr__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.page-gdpr__video-caption {
  text-align: center;
  margin-top: 15px;
  font-style: italic;
  color: #ffffff;
  font-size: 0.9em;
}

.page-gdpr__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFD700;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

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

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

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #ffffff;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px;
}

.page-gdpr__faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #f0f0f0;
}

.page-gdpr__contact-info {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__contact-info p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-gdpr__contact-info .page-gdpr__btn-primary,
.page-gdpr__contact-info .page-gdpr__btn-secondary {
  margin: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__main-title {
    font-size: 2.5em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__text-block {
    flex-direction: column;
    text-align: center;
  }
  .page-gdpr__text-block--reverse {
    flex-direction: column;
  }
  .page-gdpr__image {
    max-width: 80%;
    margin-bottom: 20px;
  }
  .page-gdpr__list--grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .page-gdpr__main-title {
    font-size: 2em;
  }
  .page-gdpr__description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    padding: 12px 20px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__content-section,
  .page-gdpr__principles-section,
  .page-gdpr__user-rights-section,
  .page-gdpr__data-protection-measures,
  .page-gdpr__cookies-policy,
  .page-gdpr__faq-section,
  .page-gdpr__contact-section {
    padding: 40px 0;
  }
  .page-gdpr__text-block p {
    font-size: 0.95em;
  }
  .page-gdpr__image {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__video-wrapper {
    padding-bottom: 56.25% !important; /* Maintain aspect ratio */
    height: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__video {
    width: 100% !important;
    height: 100% !important;
  }
  .page-gdpr__list-item {
    padding: 20px;
  }
  .page-gdpr__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-gdpr__faq-answer {
    padding: 0 15px;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px;
  }
  .page-gdpr__contact-info .page-gdpr__btn-primary,
  .page-gdpr__contact-info .page-gdpr__btn-secondary {
    width: calc(100% - 20px);
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__description {
    font-size: 0.9em;
  }
  .page-gdpr__intro-text {
    font-size: 1em;
  }
  .page-gdpr__faq-question span {
    font-size: 0.95em;
  }
  .page-gdpr__faq-toggle {
    font-size: 1.3em;
  }
}