.page-gdpr {
  color: #333333; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  padding-bottom: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__article {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-gdpr__sub-title {
  font-size: 1.6em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-gdpr__call-to-action {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #000000;
  border-radius: 8px;
  color: #FFFFFF;
}

.page-gdpr__cta-text {
  font-size: 1.5em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-gdpr__cta-button:hover {
  background-color: #FFD700; /* Slightly brighter gold on hover */
}

/* Responsive Design */
@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.8em;
  }

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

  .page-gdpr__paragraph {
    font-size: 0.95em;
  }

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

  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
    padding: 30px 15px;
  }

  .page-gdpr__content-image {
    max-width: 100%;
    height: auto;
  }

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

  .page-gdpr__cta-text {
    font-size: 1.2em;
  }
}

/* Ensure content images are not smaller than 200px in content area on mobile */
@media (max-width: 768px) {
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure mobile images are not too small */
    min-height: 200px; /* Ensure mobile images are not too small */
  }
}