.page-gdpr {
  color: #ffffff; /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  font-size: 1rem;
}

.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); /* Ensure content is below fixed header */
  text-align: center;
  background-color: #1a1a1a; /* Dark background for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-gdpr__main-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #26A9E0;
  text-shadow: 0 0 10px rgba(38, 169, 224, 0.5);
}

.page-gdpr__intro-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-gdpr__hero-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0 auto 20px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-gdpr__content-area {
  background-color: #1a1a1a; /* Dark background for content */
  color: #ffffff;
  padding: 60px 0;
}

.page-gdpr__section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #26A9E0;
  text-align: left;
}

.page-gdpr__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-gdpr__inline-link {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__inline-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

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

.page-gdpr__list-item {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for list items */
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__list-item p {
  font-size: 1rem;
  color: #e0e0e0;
}

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

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

.page-gdpr__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(38, 169, 224, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

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

.page-gdpr__faq-title {
  margin: 0;
  font-size: 1.2rem;
  color: #26A9E0;
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #26A9E0;
  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: #e0e0e0;
}

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

.page-gdpr__cta-section {
  text-align: center;
  padding: 60px 20px;
  margin-top: 60px;
  background-color: #26A9E0; /* Brand color background */
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-gdpr__cta-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background: #EA7C07; /* Login color for CTA button */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.5rem;
  }
  .page-gdpr__section-title {
    font-size: 1.8rem;
  }
  .page-gdpr__cta-title {
    font-size: 2.2rem;
  }
}

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

  .page-gdpr__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .page-gdpr__main-title {
    font-size: 2rem;
  }
  .page-gdpr__intro-description {
    font-size: 1rem;
  }
  .page-gdpr__content-area {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.5rem;
  }
  .page-gdpr__paragraph {
    font-size: 1rem;
  }
  .page-gdpr__list-title {
    font-size: 1.1rem;
  }
  .page-gdpr__list-item {
    padding: 15px;
  }
  .page-gdpr__faq-question {
    padding: 15px;
  }
  .page-gdpr__faq-title {
    font-size: 1rem;
  }
  .page-gdpr__faq-answer {
    padding: 0 15px;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px;
    padding-top: 0;
  }
  .page-gdpr__cta-section {
    padding: 40px 15px;
  }
  .page-gdpr__cta-title {
    font-size: 1.8rem;
  }
  .page-gdpr__cta-description {
    font-size: 1rem;
  }
  .page-gdpr__btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Mobile image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .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;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.8rem;
  }
  .page-gdpr__section-title {
    font-size: 1.3rem;
  }
  .page-gdpr__cta-title {
    font-size: 1.6rem;
  }
  .page-gdpr__btn-primary {
    font-size: 0.9rem;
  }
}