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

.page-gdpr__hero-section {
  background-color: #0A192F; /* Primary dark blue */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700; /* Secondary gold accent */
}

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

.page-gdpr__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-gdpr__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-gdpr__section {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for content sections */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section-title {
  font-size: 2em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-gdpr__section-paragraph {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.page-gdpr__section-image {
  width: 100%;
  max-width: 800px; /* Ensure images don't stretch too wide */
  height: auto;
  border-radius: 8px;
  margin: 25px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-gdpr__rights-list,
.page-gdpr__data-handling-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-gdpr__list-item {
  background-color: rgba(255, 215, 0, 0.1); /* Light gold background for list items */
  border-left: 4px solid #FFD700;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #ffffff;
}

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

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

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

.page-gdpr__related-links {
  margin-top: 50px;
  text-align: center;
}

.page-gdpr__related-links-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 30px;
}

.page-gdpr__links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
}

.page-gdpr__link-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white */
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  padding: 25px;
  text-decoration: none;
  color: #FFD700; /* Gold text for links */
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.page-gdpr__link-card:hover {
  background-color: rgba(255, 215, 0, 0.2); /* More transparent gold on hover */
  border-color: #FFD700;
  transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }

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

  .page-gdpr__section-title {
    font-size: 1.6em;
  }

  .page-gdpr__section-image {
    max-width: 100%;
    width: 100%;
    height: auto; /* Ensure images are responsive */
  }

  .page-gdpr__content-area {
    padding: 20px 15px;
  }

  .page-gdpr__section {
    padding: 20px;
  }

  .page-gdpr__links-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__cta-button, .page-gdpr__contact-button {
    width: 100%;
    box-sizing: border-box;
  }
}

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

  .page-gdpr__hero-section {
    padding: 60px 15px;
  }

  .page-gdpr__section-title {
    font-size: 1.4em;
  }

  .page-gdpr__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  
  /* Ensure all content images in mobile are responsive and don't overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}