.page-gdpr {
  color: #ffffff; /* Light text for dark 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__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 500px;
  overflow: hidden;
  background-color: #1A1A1A; /* Auxiliary dark color */
}

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

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

.page-gdpr__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

.page-gdpr__hero-button:hover {
  background-color: #e6c200;
  color: #000000;
}

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

.page-gdpr__section {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for dark background */
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-align: center;
}

.page-gdpr__section-text {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 15px;
}

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

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

.page-gdpr__right-card:hover {
  transform: translateY(-5px);
}

.page-gdpr__right-icon {
  width: 200px; /* Minimum size requirement */
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 5px;
}

.page-gdpr__right-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

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

.page-gdpr__compliance-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.page-gdpr__compliance-image {
  flex: 1 1 40%;
  min-width: 400px; /* Minimum size requirement */
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__compliance-list {
  flex: 1 1 50%;
  list-style: none;
  padding: 0;
}

.page-gdpr__compliance-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  color: #e0e0e0;
  font-size: 1.05em;
}

.page-gdpr__compliance-item strong {
  color: #FFD700;
}

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

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

.page-gdpr__contact-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-gdpr__contact-button:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-gdpr__contact-image {
  width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 30px;
  max-width: 100%;
}

.page-gdpr__cta-section {
  background: linear-gradient(90deg, #1A1A1A, #333333);
  padding: 50px 20px;
  text-align: center;
  border-radius: 8px;
  margin-top: 40px;
}

.page-gdpr__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-gdpr__cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__cta-button:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-gdpr__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-gdpr__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 3em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__compliance-image {
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__content-area {
    padding: 20px 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__compliance-grid {
    flex-direction: column;
  }
  .page-gdpr__compliance-image {
    width: 100%;
    min-width: 200px; /* Ensure mobile image is not too small */
    height: auto;
  }
  .page-gdpr__compliance-list {
    width: 100%;
  }
  .page-gdpr__contact-image {
    width: 100%;
    height: auto;
  }
  .page-gdpr__cta-title {
    font-size: 2em;
  }
  .page-gdpr__cta-description {
    font-size: 1em;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
  }
  /* Ensure all images within .page-gdpr are responsive and don't overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__hero-button,
  .page-gdpr__contact-button,
  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__right-icon {
    width: 150px;
    height: 100px;
  }
}