.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); /* Fixed header spacing for desktop */
  background-color: #FFFFFF;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Main brand color for hero background */
  color: #FFFFFF; /* Light text on dark background */
  gap: 30px;
}

.page-gdpr__hero-content {
  max-width: 800px;
}

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

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

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

.page-gdpr__hero-button:hover {
  background-color: #FFD700;
}

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-gdpr__principles-section,
.page-gdpr__rights-section,
.page-gdpr__action-section {
  padding: 60px 20px;
}

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

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

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

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

.page-gdpr__card {
  background-color: #F8F8F8;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-gdpr__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

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

.page-gdpr__card-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-gdpr__card-link {
  display: inline-block;
  color: #FCBC45; /* Login button color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__card-link:hover {
  color: #E0A800;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-gdpr__list-item {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45; /* Accent color */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.page-gdpr__list-text {
  font-size: 0.95em;
  color: #555555;
}

.page-gdpr__contact-cta {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__contact-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #000000;
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #000000; /* Main brand color */
  color: #FFFFFF; /* Light text */
  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: #333333;
}

.page-gdpr__action-section {
  background-color: #FCBC45; /* Login button color for a vibrant CTA */
  color: #000000; /* Dark text on light background */
  text-align: center;
  padding: 80px 20px;
}

.page-gdpr__action-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-gdpr__action-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-gdpr__action-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #000000;
}

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

.page-gdpr__action-button {
  display: inline-block;
  background-color: #000000; /* Main brand color */
  color: #FFFFFF; /* Light text */
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

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

/* Responsive Design */
@media (min-width: 769px) {
  .page-gdpr__hero-section {
    flex-direction: row;
    text-align: left;
    justify-content: center;
  }

  .page-gdpr__hero-image {
    max-width: 50%;
    width: 600px; /* Example fixed width for desktop */
    height: 338px; /* Maintain 16:9 aspect ratio */
  }

  .page-gdpr__hero-content {
    max-width: 50%;
    padding-right: 40px;
  }

  .page-gdpr__action-content {
    flex-direction: row;
    text-align: left;
    justify-content: center;
    gap: 50px;
  }

  .page-gdpr__action-image {
    max-width: 40%;
    width: 500px; /* Example fixed width for desktop */
    height: 375px; /* Maintain 4:3 aspect ratio */
  }

  .page-gdpr__action-text-wrapper {
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header height */
  }
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description,
  .page-gdpr__section-intro,
  .page-gdpr__contact-text,
  .page-gdpr__action-description {
    font-size: 1em;
  }
  .page-gdpr__section-title,
  .page-gdpr__action-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-button,
  .page-gdpr__contact-button,
  .page-gdpr__action-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__card-image {
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
  }
  /* Ensure all images within .page-gdpr are responsive on mobile */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__hero-section,
  .page-gdpr__action-content {
    padding: 40px 15px;
  }
  .page-gdpr__principles-section,
  .page-gdpr__rights-section,
  .page-gdpr__action-section {
    padding: 40px 15px;
  }
}

/* Ensure content area images are at least 200px */
.page-gdpr__card-image,
.page-gdpr__action-image {
  min-width: 200px;
  min-height: 200px;
}