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

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1A1A1A; /* Auxiliary dark background */
  padding: 0;
}

.page-gdpr__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 20px;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

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

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

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

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

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

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

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold primary color */
  color: #1A1A1A; /* Dark text for gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-gdpr__cta-button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

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

.page-gdpr__grid-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-gdpr__grid-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  border-radius: 5px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-gdpr__grid-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-gdpr__grid-description {
  font-size: 1em;
  color: #cccccc;
}

.page-gdpr__security-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.page-gdpr__security-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  max-width: 600px; /* Recommended size for content images */
  min-height: 200px; /* Enforce minimum size */
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__security-list {
  flex: 1;
  min-width: 300px;
  list-style: none;
  padding: 0;
}

.page-gdpr__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.05em;
  color: #e0e0e0;
}

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

.page-gdpr__contact-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
}

.page-gdpr__contact-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  max-width: 600px; /* Recommended size for content images */
  min-height: 200px; /* Enforce minimum size */
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__contact-text {
  flex: 1;
  min-width: 300px;
}

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

.page-gdpr__contact-description {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.page-gdpr__final-cta {
  text-align: center;
  margin-top: 80px;
  padding: 50px 20px;
  background: linear-gradient(45deg, #1A1A1A, #333333);
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-gdpr__final-cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.page-gdpr__final-cta-description {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1.1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__text-block, .page-gdpr__grid-description, .page-gdpr__list-item, .page-gdpr__contact-description {
    font-size: 1em;
  }
  .page-gdpr__grid-container, .page-gdpr__security-features, .page-gdpr__contact-cta {
    flex-direction: column;
  }
  .page-gdpr__grid-item, .page-gdpr__security-image, .page-gdpr__security-list, .page-gdpr__contact-image, .page-gdpr__contact-text {
    min-width: unset;
    width: 100%;
  }
  .page-gdpr__hero-content, .page-gdpr__section {
    padding: 20px;
  }
  .page-gdpr__final-cta-title {
    font-size: 2em;
  }
  .page-gdpr__final-cta-description {
    font-size: 1.2em;
  }
  .page-gdpr__hero-image img, .page-gdpr__grid-image, .page-gdpr__security-image, .page-gdpr__contact-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 0.95em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__final-cta-title {
    font-size: 1.8em;
  }
  .page-gdpr__final-cta-description {
    font-size: 1em;
  }
  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-gdpr__grid-item {
    padding: 20px;
  }
  .page-gdpr__list-item {
    padding: 10px 15px;
  }
}