.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (#1A202C), so text should be light */
  background-color: var(--primary-color, #1A202C);
}

.page-gdpr__hero-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  color: #ffffff;
  background-color: #1A202C;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3; /* Slightly dim the background image for text readability */
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Use accent color for title */
  max-width: 900px;
  line-height: 1.2;
}

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

.page-gdpr__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Accent color for primary button */
  color: #1A202C; /* Dark text on accent background */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-gdpr__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #FFD700;
  padding: 15px 30px;
  border: 2px solid #FFD700;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

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

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

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for section titles on dark bg */
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__light-bg .page-gdpr__section-title {
  color: #1A202C; /* Primary color for section titles on light bg */
}

.page-gdpr__subsection-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #FFD700; /* Accent for sub-titles on dark bg */
}

.page-gdpr__light-bg .page-gdpr__subsection-title {
  color: #1A202C; /* Primary for sub-titles on light bg */
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-gdpr__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-gdpr__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-gdpr__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFD700; /* Accent color for list bullet */
  font-weight: bold;
}

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

/* FAQ Section */
.page-gdpr__faq-section {
  padding: 60px 0;
}

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

.page-gdpr__faq-item {
  background-color: #1A202C; /* Dark background for FAQ items */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  background-color: #2a3447; /* Slightly lighter dark for question header */
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: #3b455a;
}

.page-gdpr__faq-question h3 {
  margin: 0;
  color: #FFD700; /* Accent color for FAQ question text */
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  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;
}

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

.page-gdpr__faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-gdpr__keyword {
  color: #FFD700;
  font-weight: bold;
}

/* Contact Section */
.page-gdpr__contact-section {
  padding: 60px 0;
  text-align: center;
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-gdpr__contact-item {
  font-size: 1.2em;
  margin-bottom: 15px;
}

.page-gdpr__contact-item a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__contact-item a:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .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: 60px 15px;
    min-height: 400px;
  }
  .page-gdpr__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-gdpr__btn-primary, .page-gdpr__btn-secondary {
    padding: 12px 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-gdpr__content-section {
    padding: 40px 0;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-gdpr__subsection-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .page-gdpr__paragraph, .page-gdpr__list-item, .page-gdpr__faq-question, .page-gdpr__faq-answer p {
    font-size: 1em;
  }
  .page-gdpr__list-item {
    padding-left: 25px;
  }
  .page-gdpr__list-item::before {
    font-size: 0.9em;
  }
  .page-gdpr__content-image {
    margin: 30px auto;
    max-width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__faq-question {
    padding: 15px;
  }
  .page-gdpr__faq-question h3 {
    font-size: 1.1em;
  }
  .page-gdpr__faq-answer {
    padding: 0 15px;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px;
  }

  /* Ensure content containers are responsive */
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Apply header offset to hero section on mobile */
  }
  .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;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__faq-question h3 {
    font-size: 1em;
  }
}