.page-gdpr {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #0A192F;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.3;
}

.page-gdpr__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__hero-button:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-gdpr__principles-section {
  background-color: #1a2a44; /* Slightly lighter dark background */
  padding: 80px 20px;
  text-align: center;
}

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

.page-gdpr__principles-heading {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 40px;
}

.page-gdpr__principles-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: #cccccc;
}

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

.page-gdpr__principle-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent light background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-gdpr__principle-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-gdpr__principle-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-gdpr__principle-description {
  color: #e0e0e0;
  font-size: 1em;
}

.page-gdpr__user-rights-section {
  padding: 80px 20px;
  background-color: #0A192F;
}

.page-gdpr__user-rights-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-gdpr__user-rights-heading {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__user-rights-intro {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-gdpr__rights-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700;
  padding: 20px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 1.05em;
}

.page-gdpr__rights-item strong {
  color: #FFD700;
}

.page-gdpr__user-rights-contact {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
}

.page-gdpr__contact-link,
.page-gdpr__privacy-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover,
.page-gdpr__privacy-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-gdpr__cta-section {
  background-color: #1a2a44;
  padding: 80px 20px;
  text-align: center;
}

.page-gdpr__cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-gdpr__cta-image {
  width: 100%;
  max-width: 600px; /* Ensure images are not too small */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-gdpr__cta-content {
  max-width: 700px;
}

.page-gdpr__cta-heading {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-gdpr__cta-text {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button:hover {
  background-color: #e6c200;
  color: #000000;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-gdpr__cta-container {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }

  .page-gdpr__cta-content {
    text-align: left;
  }
  
  .page-gdpr__cta-image {
    margin-right: 40px;
  }

  .page-gdpr__rights-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

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

  .page-gdpr__principles-heading,
  .page-gdpr__user-rights-heading,
  .page-gdpr__cta-heading {
    font-size: 2em;
  }

  .page-gdpr__principles-text,
  .page-gdpr__user-rights-intro,
  .page-gdpr__cta-text {
    font-size: 1em;
  }

  .page-gdpr__hero-button,
  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-gdpr__principles-grid {
    grid-template-columns: 1fr;
  }
  
  /* Ensure images do not overflow on mobile */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}