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

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

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: cover;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__content-area {
  padding: 60px 0;
}

.page-gdpr__content-area--alt-bg {
  background-color: #f8f8f8;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-gdpr__rights-list,
.page-gdpr__compliance-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-gdpr__list-item {
  background-color: #FFFFFF;
  border-left: 5px solid #FCBC45;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
}

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

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  min-width: 200px; /* Ensure button is not too small */
}

.page-gdpr__button--register {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-gdpr__button--register:hover {
  background-color: #e0a33a;
  transform: translateY(-3px);
}

.page-gdpr__button--support {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-gdpr__button--support:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

.page-gdpr__button--cta {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-gdpr__button--cta:hover {
  background-color: #e0a33a;
  transform: translateY(-3px);
}

.page-gdpr__contact-section,
.page-gdpr__additional-resources,
.page-gdpr__final-cta {
  padding: 60px 0;
  text-align: center;
}

.page-gdpr__contact-section {
  background-color: #f0f0f0;
}

.page-gdpr__resource-links {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-gdpr__resource-links .page-gdpr__list-item {
  flex: 0 1 calc(50% - 20px);
  max-width: 350px;
  background-color: #FFFFFF;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__resource-links .page-gdpr__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-gdpr__link {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  display: block;
  padding: 10px 0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.4em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__resource-links .page-gdpr__list-item {
    flex: 0 1 calc(100% - 20px);
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__text-block,
  .page-gdpr__list-item {
    font-size: 0.95em;
  }
  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
    min-width: 180px;
  }
  .page-gdpr__resource-links .page-gdpr__list-item {
    flex: 0 1 100%;
  }
  /* Mobile content image overflow prevention */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__hero-image,
  .page-gdpr__image-inline {
    width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size is still met */
    min-height: 200px; /* Ensure minimum size is still met */
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.4em;
  }
  .page-gdpr__hero-section,
  .page-gdpr__content-area,
  .page-gdpr__contact-section,
  .page-gdpr__additional-resources,
  .page-gdpr__final-cta {
    padding: 40px 0;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__button {
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}