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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 20px;
  background-color: #1A202C;
  color: #ffffff;
}

.page-gdpr__hero-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle overlay */
  z-index: 1;
}

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

.page-gdpr__hero-title {
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-gdpr__section-title {
  font-size: 2.5rem;
  color: #1A202C;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__section-intro {
  font-size: 1.15rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-gdpr__principles-section,
.page-gdpr__user-rights-section,
.page-gdpr__security-section,
.page-gdpr__international-data-section,
.page-gdpr__contact-section {
  padding: 60px 0;
  background-color: #fcfcfc;
}

.page-gdpr__principles-section .page-gdpr__container {
  padding-bottom: 60px;
}

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

.page-gdpr__card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-gdpr__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-gdpr__card-title {
  font-size: 1.6rem;
  color: #1A202C;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__card-text {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 20px;
}

.page-gdpr__card img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-top: auto; /* Push image to bottom if content above is shorter */
  min-height: 200px; /* Ensure images are not too small */
  object-fit: cover;
}

.page-gdpr__user-rights-section {
  background-color: #f0f0f0;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-gdpr__list-item {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-gdpr__list-title {
  font-size: 1.4rem;
  color: #1A202C;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-gdpr__list-text {
  font-size: 0.95rem;
  color: #666666;
}

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

.page-gdpr__feature-item {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

.page-gdpr__feature-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  min-height: 200px; /* Ensure images are not too small */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-gdpr__feature-title {
  font-size: 1.5rem;
  color: #1A202C;
  margin-bottom: 10px;
}

.page-gdpr__feature-text {
  font-size: 1rem;
  color: #555555;
}

.page-gdpr__international-data-section {
  background-color: #e8e8e8;
  text-align: center;
}

.page-gdpr__text-block {
  max-width: 800px;
  margin: 30px auto;
  font-size: 1.1rem;
  color: #444444;
}

.page-gdpr__read-more-button {
  display: inline-block;
  background-color: #1A202C;
  color: #FFD700;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-gdpr__read-more-button:hover {
  background-color: #0d121c;
}

.page-gdpr__contact-info {
  margin-top: 40px;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__contact-detail {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #444444;
}

.page-gdpr__contact-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: #e6c200;
}

.page-gdpr__contact-button,
.page-gdpr__join-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
}

.page-gdpr__contact-button {
  background-color: #1A202C;
  color: #ffffff;
}

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

.page-gdpr__join-button {
  background-color: #FFD700;
  color: #1A202C;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8rem;
  }
  .page-gdpr__section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2rem;
  }
  .page-gdpr__hero-description {
    font-size: 1.1rem;
  }
  .page-gdpr__hero-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-gdpr__section-title {
    font-size: 1.8rem;
  }
  .page-gdpr__section-intro {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .page-gdpr__grid,
  .page-gdpr__rights-list,
  .page-gdpr__security-features {
    grid-template-columns: 1fr;
  }
  .page-gdpr__card,
  .page-gdpr__list-item,
  .page-gdpr__feature-item {
    padding: 20px;
  }
  .page-gdpr__card-title,
  .page-gdpr__list-title,
  .page-gdpr__feature-title {
    font-size: 1.3rem;
  }
  .page-gdpr__card img,
  .page-gdpr__feature-item img {
    max-width: 100%;
    width: 100%;
    height: auto; /* Ensure images are responsive */
    min-height: 200px; /* Maintain minimum height */
  }
  .page-gdpr__contact-button,
  .page-gdpr__join-button {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
}

/* Ensure all content area images are at least 200px wide on mobile */
@media (max-width: 768px) {
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum width if possible, but max-width: 100% takes precedence */
    min-height: 200px; /* Ensure minimum height */
  }
  .page-gdpr__card img, .page-gdpr__feature-item img {
    min-width: 200px;
    min-height: 200px;
  }
}