.page-gdpr {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-gdpr__hero-section {
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login color for emphasis */
}

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

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for contrast */
  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;
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background-color: #FFD700; /* Slightly lighter gold on hover */
  transform: translateY(-2px);
}

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

.page-gdpr__section {
  background-color: #FFFFFF;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.page-gdpr__paragraph {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #333333;
}

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

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

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

.page-gdpr__link-button {
  display: inline-block;
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-right: 15px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.page-gdpr__link-button:hover {
  background-color: #333333;
}

.page-gdpr__section--final-cta {
  text-align: center;
  background-color: #FCBC45; /* Login color */
  color: #000000;
  padding: 50px 30px;
}

.page-gdpr__section--final-cta .page-gdpr__section-title {
  color: #000000;
  border-bottom: 2px solid #000000;
}

.page-gdpr__section--final-cta .page-gdpr__paragraph {
  color: #000000;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
  margin-top: 25px;
  background-color: #000000; /* Main color for contrast */
  color: #FFFFFF;
}

.page-gdpr__cta-button--large:hover {
  background-color: #333333;
}

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

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

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

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

  .page-gdpr__cta-button,
  .page-gdpr__link-button {
    padding: 12px 25px;
    font-size: 1em;
    margin-right: 10px;
  }

  .page-gdpr__section {
    padding: 20px;
  }

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

  /* Ensure all images within .page-gdpr are responsive and do not cause overflow */
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-gdpr {
    overflow-x: hidden;
  }
}