.page-gdpr {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background from shared.css */
}

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4); /* Darken image for text readability, not changing color */
}

.page-gdpr__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(26, 32, 44, 0.7); /* Main color with transparency */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Accent color for title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-gdpr__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-gdpr__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-gdpr__button--primary {
  background-color: #FFD700; /* Accent color */
  color: #1A202C; /* Main color as text */
  border: 2px solid #FFD700;
}

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

.page-gdpr__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Accent color */
  border: 2px solid #FFD700;
}

.page-gdpr__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-gdpr__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.8;
  font-size: 1.1em;
}

.page-gdpr__article-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-gdpr__subtitle {
  font-size: 1.8em;
  color: #f0f0f0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

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

.page-gdpr__link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-gdpr__call-to-action {
  background-color: #1A202C; /* Main color as background */
  padding: 80px 20px;
  text-align: center;
}

.page-gdpr__call-to-action-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__call-to-action-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-gdpr__call-to-action-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-gdpr__call-to-action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    min-height: 500px;
    padding: 40px 15px;
  }

  .page-gdpr__hero-title {
    font-size: 2.5em;
  }

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

  .page-gdpr__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__button {
    width: 100%;
    padding: 12px 20px;
  }

  .page-gdpr__content-area {
    padding: 40px 15px;
    font-size: 1em;
  }

  .page-gdpr__article-title {
    font-size: 2em;
  }

  .page-gdpr__subtitle {
    font-size: 1.5em;
  }

  .page-gdpr__content-image {
    max-width: 100%; /* Prevent overflow */
    height: auto; /* Maintain aspect ratio */
  }

  .page-gdpr__call-to-action {
    padding: 60px 15px;
  }

  .page-gdpr__call-to-action-title {
    font-size: 2em;
  }

  .page-gdpr__call-to-action-description {
    font-size: 1em;
  }

  .page-gdpr__call-to-action-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

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

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

  .page-gdpr__article-title {
    font-size: 1.8em;
  }

  .page-gdpr__subtitle {
    font-size: 1.3em;
  }

  .page-gdpr__call-to-action-title {
    font-size: 1.8em;
  }
}