.page-gdpr {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body background handled by shared.css */
}

.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;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  text-align: center;
  background-color: #1A237E; /* Main brand color for hero */
  color: #ffffff;
}

.page-gdpr__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  font-weight: bold;
}

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

.page-gdpr__hero-image-wrapper {
  margin: 30px auto;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background-color: #FFD700; /* Accent color for primary button */
  color: #1A237E; /* Main color for text on primary button */
  border: 2px solid #FFD700;
}

.page-gdpr__btn-primary:hover {
  background-color: #e0b800;
  transform: translateY(-2px);
}

.page-gdpr__content-section {
  padding: 60px 0;
}

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

.page-gdpr__dark-section {
  background-color: #1A237E;
  color: #ffffff;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  margin-bottom: 30px;
  text-align: center;
  color: #1A237E;
}

.page-gdpr__section-title--light {
  color: #FFD700;
}

.page-gdpr__section-intro-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-gdpr__text-block {
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent background for text blocks on dark sections */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__text-block a {
  color: #FFD700;
  text-decoration: underline;
}

.page-gdpr__text-block a:hover {
  color: #e0b800;
}

.page-gdpr__sub-title {
  font-size: 1.6em;
  margin-bottom: 20px;
  color: #1A237E;
  font-weight: bold;
}

.page-gdpr__sub-title--light {
  color: #FFD700;
}

.page-gdpr__image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
  justify-items: center;
}

.page-gdpr__grid-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__image-wrapper {
  margin: 30px auto;
  max-width: 900px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-gdpr__principle-item {
  margin-bottom: 30px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent background for dark sections */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-gdpr__principle-item p {
  font-size: 1.05em;
}

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

.page-gdpr__rights-item {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #ffffff;
  color: #333333;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-gdpr__rights-item p {
  font-size: 1.05em;
}

.page-gdpr__rights-item a {
  color: #1A237E;
  text-decoration: underline;
}

.page-gdpr__rights-item a:hover {
  color: #FFD700;
}

.page-gdpr__faq-section {
  margin-top: 50px;
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.page-gdpr__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 0;
  color: #1A237E;
}

.page-gdpr__faq-question:hover {
  color: #FFD700;
}

.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); /* Change + to X or - */
}

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  font-size: 1.0em;
  color: #555555;
}

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

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

.page-gdpr__faq-answer a {
  color: #1A237E;
  text-decoration: underline;
}

.page-gdpr__faq-answer a:hover {
  color: #FFD700;
}

.page-gdpr__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #1A237E;
  color: #ffffff;
}

.page-gdpr__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-gdpr__cta-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-gdpr__cta-text a {
  color: #FFD700;
  text-decoration: underline;
}

.page-gdpr__cta-text a:hover {
  color: #e0b800;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__main-title {
    font-size: 2em;
  }

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

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

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

  .page-gdpr__section-title {
    font-size: 1.8em;
  }

  .page-gdpr__sub-title {
    font-size: 1.4em;
  }

  .page-gdpr__content-section {
    padding: 40px 0;
  }

  .page-gdpr__text-block, .page-gdpr__principle-item, .page-gdpr__rights-item, .page-gdpr__faq-section {
    padding: 15px;
  }

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

  .page-gdpr__hero-image-wrapper, .page-gdpr__image-wrapper, .page-gdpr__image-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-gdpr__faq-question {
    font-size: 1.1em;
  }

  .page-gdpr__faq-answer {
    font-size: 0.95em;
  }

  .page-gdpr__cta-title {
    font-size: 2em;
  }

  .page-gdpr__cta-text {
    font-size: 1em;
  }
}