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

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 40px 20px;
  background-color: var(--Deep-Navy);
  color: var(--Text-Main);
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin-bottom: 30px;
  z-index: 1;
}

.page-gdpr__heading-primary {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--Text-Main);
}

.page-gdpr__text-intro {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--Text-Secondary);
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
}

.page-gdpr__cta-button--secondary {
  background: var(--Card-B-G);
  border: 2px solid var(--Border);
  color: var(--Text-Main);
}

.page-gdpr__cta-button--secondary:hover {
  background: var(--Border);
  color: #ffffff;
}

.page-gdpr__image-container {
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

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

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #ffffff;
  color: #333333;
}

.page-gdpr__dark-section {
  background-color: var(--Deep-Navy);
  color: var(--Text-Main);
}

.page-gdpr__dark-section .page-gdpr__heading-secondary,
.page-gdpr__dark-section .page-gdpr__heading-tertiary {
  color: var(--Text-Main);
}

.page-gdpr__dark-section .page-gdpr__text,
.page-gdpr__dark-section .page-gdpr__list-item strong {
  color: var(--Text-Secondary);
}

.page-gdpr__dark-section .page-gdpr__card {
  background-color: var(--Card-B-G);
  border: 1px solid var(--Border);
  color: var(--Text-Secondary);
}

.page-gdpr__dark-section .page-gdpr__card .page-gdpr__heading-tertiary {
  color: var(--Text-Main);
}

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

.page-gdpr__heading-secondary {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--Main-Color);
}

.page-gdpr__heading-tertiary {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--Main-Color);
}

.page-gdpr__text {
  margin-bottom: 15px;
  color: #333333;
}

.page-gdpr__text a {
  color: var(--Auxiliary-Color);
  text-decoration: underline;
}

.page-gdpr__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-gdpr__card {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
}

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
}

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

.page-gdpr__list-item strong {
  color: var(--Main-Color);
}

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

.page-gdpr__faq-item {
  background-color: var(--Card-B-G);
  border: 1px solid var(--Border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--Text-Secondary);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  color: var(--Text-Main);
  background-color: var(--Card-B-G);
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-gdpr__faq-question:hover {
  background-color: var(--Border);
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--Gold);
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 0.95em;
  color: var(--Text-Secondary);
}

.page-gdpr__faq-answer p {
  margin-bottom: 10px;
  color: var(--Text-Secondary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__heading-primary {
    font-size: clamp(1.8em, 4.5vw, 3em);
  }
  .page-gdpr__heading-secondary {
    font-size: 2em;
  }
  .page-gdpr__grid-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 10px 15px 30px 15px;
  }
  .page-gdpr__heading-primary {
    font-size: clamp(1.5em, 6vw, 2.5em) !important; /* Adjust H1 size for mobile */
  }
  .page-gdpr__text-intro {
    font-size: 1em;
  }
  .page-gdpr__heading-secondary {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr__heading-tertiary {
    font-size: 1.3em;
  }
  .page-gdpr__section {
    padding: 40px 15px;
  }
  .page-gdpr__container {
    padding-left: 0;
    padding-right: 0;
  }
  .page-gdpr__grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__card {
    padding: 20px;
  }
  .page-gdpr__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-gdpr__faq-answer {
    padding: 0 20px 15px 20px;
  }
  
  /* Mobile image responsive adaptations */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__image-container,
  .page-gdpr__section,
  .page-gdpr__container,
  .page-gdpr__card,
  .page-gdpr__grid-container,
  .page-gdpr__faq-list,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }
  
  /* Mobile button responsive adaptations */
  .page-gdpr__cta-button,
  .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;
    text-align: center;
  }
  .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;
  }
  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column; 
  }
}