.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--background-color, #FFFFFF);
}

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

.page-gdpr__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-gdpr__hero-section {
  position: relative;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 100px 0;
  padding-top: calc(var(--header-offset, 120px) + 60px); /* Ensure spacing below header */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Slightly transparent to allow text to be legible */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__subsection-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-gdpr__principles-section {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-gdpr__principles-section .page-gdpr__section-title {
  color: #FFFFFF;
}

.page-gdpr__principles-list,
.page-gdpr__rights-list,
.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-gdpr__list-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-gdpr__list-item p {
  color: #555555;
}

.page-gdpr__list-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #26A9E0;
}

/* Specific styles for dark background list items in principles section */
.page-gdpr__principles-section .page-gdpr__list-item {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.page-gdpr__principles-section .page-gdpr__list-item p {
  color: #f0f0f0;
}

.page-gdpr__principles-section .page-gdpr__list-title {
  color: #FFFFFF;
}

.page-gdpr__implementation-section {
  background-color: #f8f8f8;
}

.page-gdpr__importance-section {
  padding-bottom: 80px;
}

.page-gdpr__faq-section {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-gdpr__faq-section .page-gdpr__section-title,
.page-gdpr__faq-section .page-gdpr__text-block {
  color: #FFFFFF;
}

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

.page-gdpr__faq-item {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.page-gdpr__faq-title {
  margin: 0;
  color: #FFFFFF;
  flex-grow: 1;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #FFFFFF;
}

.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-out, padding 0.3s ease-out;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 20px;
  color: #FFFFFF;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer p {
  color: #f0f0f0;
}

.page-gdpr__contact-section {
  background-color: #f8f8f8;
  text-align: center;
  padding-bottom: 80px;
}

.page-gdpr__contact-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  max-width: 800px;
}

.page-gdpr__contact-list {
  margin-top: 30px;
  margin-bottom: 40px;
  font-size: 1.1em;
  color: #555555;
}

.page-gdpr__contact-list .page-gdpr__list-item {
  background: none;
  box-shadow: none;
  padding: 5px 0;
  color: #555555;
}

.page-gdpr__contact-list a {
  color: #26A9E0;
  text-decoration: none;
}

.page-gdpr__contact-list a:hover {
  text-decoration: underline;
}

.page-gdpr__btn-primary,
.page-gdpr__contact-btn {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__btn-primary:hover,
.page-gdpr__contact-btn:hover {
  background-color: #1a7fb8; /* Darker shade of primary color */
}

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

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.4em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__subsection-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
    padding-bottom: 60px;
  }
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__subsection-title {
    font-size: 1.3em;
  }
  .page-gdpr__text-block {
    font-size: 1em;
  }
  .page-gdpr__list-item {
    padding: 20px;
  }
  .page-gdpr__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px;
  }
  .page-gdpr__btn-primary, .page-gdpr__contact-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__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__subsection-title {
    font-size: 1.2em;
  }
  .page-gdpr__list-item {
    padding: 15px;
  }
  .page-gdpr__faq-question {
    font-size: 1em;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 10px;
  }
  .page-gdpr__contact-card {
    padding: 25px;
  }
}