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

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

.page-gdpr__hero-section {
  background-color: #1A202C;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

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

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-bottom: 40px;
}

.page-gdpr__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #1A202C;
  text-align: center;
  margin: 60px 0 40px;
  font-weight: bold;
}

.page-gdpr__intro-section, .page-gdpr__principles-section, .page-gdpr__rights-section, .page-gdpr__security-section, .page-gdpr__cookies-section, .page-gdpr__contact-section, .page-gdpr__more-info-section {
  padding: 60px 0;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444444;
}

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

.page-gdpr__principle-card, .page-gdpr__resource-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-gdpr__principle-card:hover, .page-gdpr__resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__card-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Constrain card image width */
  display: block;
  margin: 0 auto 20px;
  border-radius: 4px;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__card-title, .page-gdpr__resource-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__card-title a, .page-gdpr__resource-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-gdpr__card-title a:hover, .page-gdpr__resource-title a:hover {
  text-decoration: underline;
}

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

.page-gdpr__rights-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-gdpr__right-title {
  font-size: 1.4em;
  color: #1A202C;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__right-text {
  font-size: 1em;
  color: #555555;
}

.page-gdpr__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__inline-link:hover {
  text-decoration: underline;
}

.page-gdpr__rights-image, .page-gdpr__security-image, .page-gdpr__contact-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 60px auto 0;
  border-radius: 8px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__security-features {
  margin-top: 40px;
}

.page-gdpr__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-gdpr__list-item {
  background-color: #f0f0f0;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 1.05em;
  color: #333333;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #1A202C;
  color: #FFD700;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 40px;
}

.page-gdpr__contact-button:hover {
  background-color: #0d1118;
  transform: translateY(-2px);
}

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

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

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

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

  .page-gdpr__feature-list {
    grid-template-columns: 1fr;
  }

  .page-gdpr__hero-image, .page-gdpr__rights-image, .page-gdpr__security-image, .page-gdpr__contact-image, .page-gdpr__card-image {
    max-width: 100%;
    height: auto;
  }
}

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

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

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

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