.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 */
  background-color: #FFFFFF; /* Explicitly set page background to match shared */
}

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

/* Hero Section */
.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-gdpr__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay for text readability */
  display: block;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

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

.page-gdpr__register-button:hover {
  background-color: #E0A83A;
}

/* Section Titles and Intros */
.page-gdpr__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-gdpr__section-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

/* Principles Section */
.page-gdpr__principles-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

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

.page-gdpr__card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-gdpr__card-text {
  color: #666666;
}

/* Data Security Section */
.page-gdpr__data-security-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-gdpr__container--reverse {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}

.page-gdpr__content-block {
  flex: 1;
}

.page-gdpr__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__security-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #333333;
}

.page-gdpr__security-item::before {
  content: '✔';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-gdpr__learn-more-button {
  display: inline-block;
  background-color: #000000; /* Main color for secondary CTA */
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  transition: background-color 0.3s ease;
}

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

/* Your Rights Section */
.page-gdpr__your-rights-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

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

.page-gdpr__right-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-gdpr__right-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__right-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-gdpr__right-description {
  color: #666666;
}

.page-gdpr__action-area {
  text-align: center;
  margin-top: 60px;
}

.page-gdpr__action-text {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 30px;
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-gdpr__contact-button:hover {
  background-color: #E0A83A;
}

/* Contact Section */
.page-gdpr__contact-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-gdpr__contact-card {
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.page-gdpr__contact-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__contact-card-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-gdpr__contact-card-text {
  color: #666666;
  margin-bottom: 20px;
}

.page-gdpr__contact-card-link {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__contact-card-link:hover {
  color: #E0A83A;
}

.page-gdpr__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #E0E0E0;
}

.page-gdpr__cta-text {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 30px;
}

.page-gdpr__join-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

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

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

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

  .page-gdpr__container--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }

  .page-gdpr__hero-section {
    padding: 40px 15px;
  }

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

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

  .page-gdpr__register-button,
  .page-gdpr__contact-button,
  .page-gdpr__join-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
    padding-top: 30px;
  }

  .page-gdpr__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-gdpr__principles-section,
  .page-gdpr__data-security-section,
  .page-gdpr__your-rights-section,
  .page-gdpr__contact-section {
    padding: 50px 0;
  }

  .page-gdpr__grid,
  .page-gdpr__rights-grid,
  .page-gdpr__contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__image-block img,
  .page-gdpr__right-card img,
  .page-gdpr__contact-card img {
    max-width: 100%;
    height: auto;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-gdpr__content-block {
    order: 2;
  }

  .page-gdpr__image-block {
    order: 1;
    margin-bottom: 30px;
  }
  
  .page-gdpr__container {
    padding: 0 15px;
  }
}

/* Ensure content images are not small on mobile */
@media (max-width: 768px) {
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__image-block img,
  .page-gdpr__right-card img,
  .page-gdpr__contact-card img {
    width: 100%; /* Ensure images fill their container */
    height: auto; /* Maintain aspect ratio */
  }
}