.page-gdpr {
  color: #333333; /* Dark text for light background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #FFFFFF;
}

.page-gdpr__hero-section {
  background-color: #000000; /* Black background for hero */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

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

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

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

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Black text for login button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

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

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

.page-gdpr__section-intro {
  text-align: center;
  margin-bottom: 50px;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-gdpr__section-paragraph {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #555555;
}

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

.page-gdpr__section {
  margin-bottom: 60px;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__subsection-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
  display: inline-block;
}

.page-gdpr__paragraph {
  margin-bottom: 15px;
  color: #333333;
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
}

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

.page-gdpr__list-item a {
  color: #FCBC45;
  text-decoration: none;
}

.page-gdpr__list-item a:hover {
  text-decoration: underline;
}

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

.page-gdpr__card {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-gdpr__card-icon {
  width: 200px; /* Min size */
  height: 200px; /* Min size */
  object-fit: contain;
  margin-bottom: 20px;
}

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

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

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-gdpr__contact-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-gdpr__contact-item a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-item a:hover {
  text-decoration: underline;
}

.page-gdpr__section--cta {
  text-align: center;
  background-color: #000000; /* Black background for CTA */
  color: #FFFFFF;
  padding: 50px 30px;
  margin-top: 60px;
  border-radius: 10px;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-gdpr__policy-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-gdpr__policy-item a {
  display: block;
  background-color: #F0F0F0;
  color: #000000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__policy-item a:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.4em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__subsection-title {
    font-size: 1.6em;
  }
  .page-gdpr__cards-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__subsection-title {
    font-size: 1.4em;
  }
  .page-gdpr__content-area {
    padding: 20px 15px;
  }
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }
  .page-gdpr__section {
    padding: 20px;
  }
  .page-gdpr__cards-container {
    grid-template-columns: 1fr;
  }
  .page-gdpr__policy-links {
    flex-direction: column;
    align-items: center;
  }
  /* Ensure all content area images are responsive and not too small */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.6em;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__subsection-title {
    font-size: 1.2em;
  }
  .page-gdpr__hero-button, .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__policy-item a {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}