.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Light text on dark body */
  background-color: var(--deep-navy);
  padding-bottom: 40px;
}

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

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small padding, body handles header offset */
  padding-bottom: 40px;
  background-color: var(--card-bg);
  color: var(--text-main);
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Desktop: cover */
  border-radius: 8px;
}

.page-gdpr__hero-content {
  max-width: 800px;
  z-index: 1;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 3.5vw, 3.2em);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold);
  line-height: 1.2;
}

.page-gdpr__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-gdpr__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: none;
}

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: var(--glow);
  border: 2px solid var(--glow);
}

.page-gdpr__btn-secondary:hover {
  background: var(--glow);
  color: var(--deep-navy);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: var(--deep-navy);
  color: var(--text-main);
}

.page-gdpr__section:nth-of-type(odd) {
  background-color: var(--card-bg);
}

.page-gdpr__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-gdpr__sub-title {
  font-size: 1.6em;
  font-weight: 600;
  color: var(--glow);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__text-block p {
  margin-bottom: 1em;
  color: var(--text-secondary);
}

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

.page-gdpr__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__principle-icon,
.page-gdpr__compliance-image {
  width: 100%;
  max-width: 200px; /* Smaller max-width for icons/principles */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: contain;
}

.page-gdpr__compliance-image {
  max-width: 100%; /* Full width for compliance images */
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-gdpr__card-title {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 15px;
}

.page-gdpr__card p {
  font-size: 0.95em;
  color: var(--text-secondary);
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__rights-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-main);
}

.page-gdpr__rights-item .page-gdpr__list-title {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--glow);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__rights-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.page-gdpr__contact-info {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  margin-top: 30px;
  text-align: center;
  color: var(--text-main);
}

.page-gdpr__contact-info p {
  color: var(--text-secondary);
  margin-bottom: 1em;
}

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

.page-gdpr__contact-list li {
  color: var(--text-main);
  font-size: 1.1em;
  margin-bottom: 10px;
}

.page-gdpr__contact-list li a {
  color: var(--glow);
  text-decoration: none;
}

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

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

.page-gdpr__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-gdpr__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  outline: none;
  list-style: none;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--gold);
}

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

.page-gdpr__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  margin-left: 15px;
  color: var(--glow);
  transition: transform 0.3s ease;
}

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

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  color: var(--text-secondary);
  font-size: 1em;
}

.page-gdpr__dark-section {
  background-color: var(--deep-navy);
  color: var(--text-main);
  text-align: center;
}

.page-gdpr__dark-section .page-gdpr__section-title {
  color: var(--gold);
}

.page-gdpr__explore-text {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 15px;
    line-height: 1.5;
  }

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

  .page-gdpr__hero-section {
    padding-top: 10px !important; /* Small padding, body handles header offset */
    padding-bottom: 30px;
  }

  .page-gdpr__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-gdpr__hero-image {
    object-fit: contain; /* Mobile: contain to avoid cropping */
    aspect-ratio: unset; /* Remove fixed aspect ratio if any */
    max-height: none; /* Remove max-height if any */
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-gdpr__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }

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

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

  .page-gdpr__sub-title {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-gdpr__principles-grid,
  .page-gdpr__compliance-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__card {
    padding: 25px;
  }

  .page-gdpr__principle-icon,
  .page-gdpr__compliance-image {
    max-width: 150px;
    height: auto;
  }

  .page-gdpr__compliance-image {
    height: 150px; /* Adjust fixed height for mobile */
  }

  .page-gdpr__card-title {
    font-size: 1.2em;
  }

  .page-gdpr__rights-item {
    padding: 20px;
    margin-bottom: 15px;
  }

  .page-gdpr__rights-item .page-gdpr__list-title {
    font-size: 1.2em;
  }

  .page-gdpr__contact-info {
    padding: 30px;
  }

  .page-gdpr__contact-list li {
    font-size: 1em;
  }

  .page-gdpr__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }

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

  /* General image and container rules for mobile */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .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;
  }

  .page-gdpr__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }

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

/* Additional contrast safety for specific elements */
.page-gdpr p, .page-gdpr li {
  color: var(--text-secondary);
}
.page-gdpr__card p {
  color: var(--text-secondary);
}
.page-gdpr__card-title, .page-gdpr__main-title, .page-gdpr__section-title {
  color: var(--gold);
}
.page-gdpr__sub-title, .page-gdpr__rights-item .page-gdpr__list-title, .page-gdpr__contact-list li a {
  color: var(--glow);
}
.page-gdpr__btn-primary { 
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); 
  color: #F3F8FF; 
}
.page-gdpr__btn-secondary { 
  background: transparent; 
  color: #4FA8FF; 
  border: 2px solid #4FA8FF; 
}
.page-gdpr__card {
  background-color: #10233F;
  border-color: #244D84;
}
.page-gdpr__section:nth-of-type(odd) {
  background-color: #10233F;
}