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

.page-gdpr__hero-section {
  background-color: #1A2A4E; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  font-weight: bold;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for CTA */
  color: #1A2A4E;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  min-width: 200px; /* Ensure button is large enough */
  min-height: 50px;
  line-height: 1.5; /* Ensure text is centered vertically */
}

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

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

.page-gdpr__article-heading {
  color: #1A2A4E; /* Main color for headings */
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-gdpr__article-paragraph {
  margin-bottom: 20px;
  font-size: 1em;
}

.page-gdpr__image-inline {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-gdpr__link {
  color: #1A2A4E;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #FFD700;
}

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

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

.page-gdpr__right-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.page-gdpr__right-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  min-width: 200px; /* Ensure card icons are not too small */
  min-height: 200px;
  width: 100%; /* Allow image to scale within card */
  height: auto;
}

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

.page-gdpr__right-description {
  font-size: 0.95em;
  color: #555555;
}

.page-gdpr__contact-info {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-gdpr__contact-detail {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-gdpr__final-cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.page-gdpr__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

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

  .page-gdpr__article-heading {
    font-size: 1.6em;
  }

  .page-gdpr__content-area {
    padding: 30px 15px;
  }

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

  .page-gdpr__image-inline,
  .page-gdpr__right-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are still large enough */
    min-height: 200px;
  }

  .page-gdpr__article-paragraph,
  .page-gdpr__list-item,
  .page-gdpr__right-description,
  .page-gdpr__contact-detail {
    font-size: 0.95em;
  }
}

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

  .page-gdpr__cta-button {
    width: 100%;
    box-sizing: border-box;
    font-size: 1em;
    padding: 12px 20px;
  }

  .page-gdpr__cta-button--large {
    font-size: 1.1em;
  }

  .page-gdpr__article-heading {
    font-size: 1.4em;
  }
}