.page-gdpr {
  color: #333333; /* Dark text for light 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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
}

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

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

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color for CTA */
  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__hero-button:hover {
  background-color: #e0a53b;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-gdpr__section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

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

.page-gdpr__section-text {
  font-size: 1em;
  color: #333333;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__principle-card,
.page-gdpr__right-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  text-align: left;
  min-height: 200px; /* Ensure cards have similar height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-gdpr__card-title,
.page-gdpr__item-title {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__card-text,
.page-gdpr__item-description {
  font-size: 0.95em;
  color: #555555;
}

.page-gdpr__section-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 40px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 800px;
}

.page-gdpr__security-item {
  background-color: #f0f0f0;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-left: 5px solid #FCBC45;
  border-radius: 5px;
  color: #333333;
  font-size: 1em;
}

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

.page-gdpr__contact-section {
  text-align: center;
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  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;
}

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

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

  .page-gdpr__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-gdpr__principles-grid,
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__hero-image,
  .page-gdpr__section-image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content area images are responsive and do not overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.5em;
  }

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

  .page-gdpr__hero-section,
  .page-gdpr__section {
    padding: 30px 15px;
  }

  .page-gdpr__principle-card,
  .page-gdpr__right-item {
    padding: 20px;
  }

  .page-gdpr__card-title,
  .page-gdpr__item-title {
    font-size: 1.1em;
  }
}