.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #F4F7FB; /* Custom Background color */
}

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

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

.page-gdpr__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #1F2D3D; /* Custom Text Main color */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-gdpr__subsection-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #1F2D3D; /* Custom Text Main color */
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #1F2D3D; /* Custom Text Main color */
}

.page-gdpr__list,
.page-gdpr__bullet-list,
.page-gdpr__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #1F2D3D; /* Custom Text Main color */
}

.page-gdpr__list-item,
.page-gdpr__bullet-list li,
.page-gdpr__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gdpr__list-title {
  font-size: 1.2em;
  font-weight: 600;
  color: #1F2D3D; /* Custom Text Main color */
  margin-bottom: 5px;
}

.page-gdpr__link {
  color: #2F6BFF; /* Main color */
  text-decoration: underline;
}

.page-gdpr__link:hover {
  color: #6FA3FF; /* Auxiliary color */
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 10px 20px 60px; /* Small top padding, larger bottom padding */
  background-color: #2F6BFF; /* Main color as background */
  color: #ffffff;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly dim the image for text readability */
  display: block;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-gdpr__hero-description {
  font-size: clamp(1.1em, 1.8vw, 1.3em);
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Custom Button color */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.6);
}

.page-gdpr__btn-secondary {
  background: #ffffff; /* Custom Card BG color */
  color: #2F6BFF; /* Main color */
  border: 2px solid #2F6BFF;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-gdpr__btn-secondary:hover {
  background: #f0f0f0;
  color: #2F6BFF;
  border-color: #6FA3FF; /* Auxiliary color */
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.page-gdpr__cta-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Image Styling */
.page-gdpr__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Background colors for sections */
.page-gdpr__dark-bg {
  background-color: #2F6BFF;
  color: #ffffff;
}

.page-gdpr__dark-bg .page-gdpr__section-title,
.page-gdpr__dark-bg .page-gdpr__subsection-title,
.page-gdpr__dark-bg .page-gdpr__text-block,
.page-gdpr__dark-bg .page-gdpr__list-title,
.page-gdpr__dark-bg .page-gdpr__list-item,
.page-gdpr__dark-bg .page-gdpr__bullet-list li,
.page-gdpr__dark-bg .page-gdpr__ordered-list li {
  color: #ffffff;
}

.page-gdpr__dark-bg .page-gdpr__link {
  color: #A5C4FF; /* Glow color for links on dark background */
}

.page-gdpr__dark-bg .page-gdpr__link:hover {
  color: #ffffff;
}

.page-gdpr__light-bg {
  background-color: #F4F7FB; /* Custom Background color */
  color: #1F2D3D; /* Custom Text Main color */
}

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

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

.page-gdpr__faq-item {
  background-color: #ffffff; /* Custom Card BG color */
  border: 1px solid #D6E2FF; /* Custom Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: #1F2D3D; /* Custom Text Main color */
  cursor: pointer;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #2F6BFF; /* Main color */
  margin-left: 15px;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: "−";
}

.page-gdpr__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.05em;
  color: #1F2D3D; /* Custom Text Main color */
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__section {
    padding: 40px 0;
  }

  .page-gdpr__container {
    padding: 0 15px;
  }

  .page-gdpr__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-gdpr__subsection-title {
    font-size: 1.5em;
  }

  .page-gdpr__text-block {
    font-size: 1em;
  }

  .page-gdpr__list-item,
  .page-gdpr__bullet-list li,
  .page-gdpr__ordered-list li {
    font-size: 1em;
  }

  .page-gdpr__list-title {
    font-size: 1.1em;
  }

  .page-gdpr__hero-section {
    min-height: 400px;
    padding: 10px 15px 40px;
  }

  .page-gdpr__main-title {
    font-size: 2.2em; /* Adjusted for mobile */
  }

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

  /* Mobile image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile button responsiveness */
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="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;
    margin-bottom: 15px; /* Add space between stacked buttons */
  }

  .page-gdpr__cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between buttons if multiple */
  }

  .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;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-gdpr__video-section {
    padding-top: 10px !important;
  }
}

/* Ensure contrast for text on various backgrounds */
.page-gdpr__dark-bg {
  color: #ffffff;
}

.page-gdpr__light-bg {
  color: #1F2D3D;
}

.page-gdpr p,
.page-gdpr li,
.page-gdpr__faq-answer p {
  color: #1F2D3D; /* Custom Text Main for paragraphs/lists on light backgrounds */
}

.page-gdpr__dark-bg p,
.page-gdpr__dark-bg li,
.page-gdpr__dark-bg .page-gdpr__faq-answer p {
  color: #ffffff; /* White for paragraphs/lists on dark backgrounds */
}

.page-gdpr__faq-question {
  color: #1F2D3D;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  color: #2F6BFF;
}

.page-gdpr__faq-toggle {
  color: #2F6BFF;
}

.page-gdpr__dark-bg .page-gdpr__faq-question,
.page-gdpr__dark-bg .page-gdpr__faq-item[open] .page-gdpr__faq-question {
  color: #ffffff; /* FAQ text on dark background */
}

.page-gdpr__dark-bg .page-gdpr__faq-toggle {
  color: #A5C4FF; /* FAQ toggle on dark background */
}