.page-gdpr {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
}

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure header offset for fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px;
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF; /* Light text on dark background */
  position: relative;
  overflow: hidden; /* For image positioning */
}

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

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

.page-gdpr__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  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, transform 0.3s ease;
}

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

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

.page-gdpr__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #000000;
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__sub-title {
  font-size: 2em;
  font-weight: bold;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

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

.page-gdpr__key-principles {
  background-color: #F8F8F8;
  padding: 40px;
  border-radius: 12px;
  margin-top: 40px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

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

.page-gdpr__principle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gdpr__principle-card img {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: 300px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333333;
}

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

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

.page-gdpr__button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

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

.page-gdpr__button--contact {
  background-color: #FCBC45;
  color: #000000;
  margin: 30px auto;
  display: block;
  width: fit-content;
}

.page-gdpr__button--contact:hover {
  background-color: #FFD700;
}

.page-gdpr__link {
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

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

.page-gdpr__feature-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-gdpr__feature-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__feature-card img {
  width: 100%;
  max-width: 600px; /* Ensure images are not too small */
  height: 400px; /* Consistent height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-gdpr__contact-info {
  font-style: normal;
  margin-top: 30px;
  margin-bottom: 40px;
  font-size: 1.1em;
  color: #333333;
  text-align: center;
}

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

.page-gdpr__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.page-gdpr__cta-title {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-gdpr__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

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

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

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
  }

  .page-gdpr__hero-title {
    font-size: 2.5em;
  }

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

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

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

  .page-gdpr__section-title {
    font-size: 2em;
    margin-top: 40px;
  }

  .page-gdpr__sub-title {
    font-size: 1.6em;
    margin-top: 30px;
  }

  .page-gdpr__paragraph, .page-gdpr__list-item, .page-gdpr__card-text {
    font-size: 0.95em;
  }

  .page-gdpr__principles-grid, .page-gdpr__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__principle-card img, .page-gdpr__feature-card img {
    max-width: 100%;
    height: auto; /* Allow height to adjust for mobile */
    min-height: 200px; /* Enforce minimum height */
    width: 100%; /* Ensure images don't cause horizontal scroll */
  }

  .page-gdpr__cta-section {
    padding: 40px 20px;
  }

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

  .page-gdpr__cta-text {
    font-size: 1em;
  }

  .page-gdpr__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }

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