.page-gdpr {
  color: #ffffff; /* Light text on dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

.page-gdpr__hero-section {
  background-color: #0A1931; /* Main brand color for hero background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15; /* Subtly blend the image into the background */
  z-index: 0;
}

.page-gdpr__main-title {
  font-size: 3.2em;
  color: #FFD700; /* Accent color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__subtitle {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__button--primary {
  background-color: #FFD700; /* Accent color for primary button */
  color: #0A1931;
}

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

.page-gdpr__button--secondary {
  background-color: #0A1931;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gdpr__button--secondary:hover {
  background-color: #1a2a44;
  transform: translateY(-2px);
}

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

.page-gdpr__section-header {
  text-align: center;
  margin-bottom: 50px;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-gdpr__section-description {
  font-size: 1.1em;
  color: #cccccc;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__card {
  background-color: #1a2a44; /* Slightly lighter dark background for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-gdpr__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__card-image {
  width: 100%; /* Ensure images are responsive within cards */
  height: auto;
  max-width: 250px; /* Constrain card image size */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-gdpr__card-text {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.5;
}

.page-gdpr__user-rights {
  padding: 60px 20px;
  text-align: center;
  background-color: #0A1931;
  margin-top: 60px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-gdpr__list-item {
  background-color: #1a2a44;
  border-left: 5px solid #FFD700;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #ffffff;
}

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

.page-gdpr__contact-cta {
  margin-top: 50px;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }
  .page-gdpr__main-title {
    font-size: 2.2em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__content-area {
    padding: 40px 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__card-image {
    max-width: 200px; /* Ensure images within cards are not too wide on mobile */
    min-width: 200px; /* Enforce minimum size for mobile */
    min-height: 200px; /* Enforce minimum size for mobile */
  }
  /* Mobile content area images must be responsive and not cause overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__list-item {
    font-size: 1em;
    padding: 15px;
  }
  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__card-title {
    font-size: 1.4em;
  }
  .page-gdpr__button {
    width: 100%;
    max-width: 280px;
  }
}