.page-gdpr {
  color: #ffffff; /* Body background is dark, so text is light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  background-color: #121212; /* Match body background */
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
}

.page-gdpr__main-title {
  color: #26A9E0; /* Brand color for title */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure H1 doesn't overflow */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-gdpr__subtitle {
  color: #ffffff;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-gdpr__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Ensure long words break */
  box-sizing: border-box;
  max-width: 100%;
}

.page-gdpr__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

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

.page-gdpr__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-gdpr__section {
  padding: 60px 20px;
  text-align: left;
}

.page-gdpr__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-gdpr__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text on light background */
}

.page-gdpr__dark-section {
  background-color: #1e1e1e; /* Slightly lighter dark than body for contrast */
  color: #ffffff;
}

.page-gdpr__section-title {
  color: #26A9E0; /* Brand color for section titles */
  font-size: 2.2em;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.page-gdpr__light-bg .page-gdpr__section-title {
  color: #000000;
}

.page-gdpr__text-block {
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
}

.page-gdpr__list-item strong {
  color: #26A9E0;
}

.page-gdpr__light-bg .page-gdpr__list-item strong {
  color: #000000;
}

.page-gdpr__image-container {
  text-align: center;
  margin: 30px 0;
}

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

.page-gdpr__contact-info {
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-gdpr__contact-info p {
  margin-bottom: 10px;
}

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

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

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

.page-gdpr__faq-item {
  background-color: #2a2a2a; /* Slightly lighter dark for FAQ items */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-item summary {
  list-style: none;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: #ffffff;
  background-color: #26A9E0; /* Brand color for FAQ question background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
  color: #ffffff;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #ffffff;
}

.page-gdpr__faq-answer {
  padding: 20px;
  background-color: #1e1e1e; /* Darker background for answer */
  color: #f0f0f0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-gdpr__faq-answer p {
  margin-bottom: 0;
}

.page-gdpr__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #f5f5f5; /* Light background for CTA */
  color: #333333;
}

.page-gdpr__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__cta-section .page-gdpr__section-title {
  color: #000000;
}

.page-gdpr__cta-section .page-gdpr__text-block {
  color: #555555;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gdpr__main-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: 10px 15px 40px;
  }

  .page-gdpr__hero-image-wrapper {
    max-height: 300px;
  }

  .page-gdpr__main-title {
    font-size: 2.2em; /* Adjusted H1 font size for mobile */
    margin-bottom: 15px;
  }

  .page-gdpr__subtitle {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important; /* Force full width */
    max-width: 100% !important;
    padding: 12px 15px;
  }

  .page-gdpr__section {
    padding: 40px 15px;
  }

  .page-gdpr__content-area,
  .page-gdpr__cta-content {
    padding: 0;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

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

  .page-gdpr__image-container,
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__video-section,
  .page-gdpr__video-container,
  .page-gdpr__video-wrapper,
  .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;
    overflow: hidden !important;
  }
  
  .page-gdpr__video-section {
    padding-top: 10px !important;
  }

  .page-gdpr__faq-item summary {
    padding: 15px;
  }

  .page-gdpr__faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__list {
    margin-left: 15px;
  }
}

/* Color Contrast Fixes (as per instructions) */
.page-gdpr__dark-bg {
  color: #ffffff;
  background: #121212; /* Matching body background */
}

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

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

.page-gdpr__faq-item summary {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-gdpr__faq-answer {
  background-color: #1e1e1e;
  color: #f0f0f0;
}

.page-gdpr__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

.page-gdpr a {
  color: #26A9E0; /* Default link color */
}
.page-gdpr__light-bg a {
  color: #26A9E0;
}
.page-gdpr__dark-section a {
  color: #26A9E0;
}

/* Custom colors */
.page-gdpr__login-button {
  background-color: #EA7C07;
  color: #FFFFFF;
}

.page-gdpr__background-element {
  background-color: #FFFFFF;
}

.page-gdpr__black-text {
  color: #000000;
}