.page-gdpr {
  color: #ffffff; /* Light text for dark body background */
  background-color: #000000; /* Ensure consistency with body background */
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-gdpr__hero-button,
.page-gdpr__final-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold primary button */
  color: #3F0071; /* Deep purple text */
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-gdpr__hero-button:hover,
.page-gdpr__final-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(255, 215, 0, 0.4);
}

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

.page-gdpr__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
  filter: brightness(0.6);
}

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #0d0d0d; /* Slightly lighter dark background for sections */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-gdpr__section:last-of-type {
  margin-bottom: 0;
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-gdpr__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #e0e0e0;
}

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

.page-gdpr__feature-card,
.page-gdpr__right-card {
  background-color: #1a1a1a; /* Darker card background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__feature-card:hover,
.page-gdpr__right-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-gdpr__feature-card img,
.page-gdpr__right-card img {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

.page-gdpr__feature-title,
.page-gdpr__right-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-gdpr__feature-description,
.page-gdpr__right-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
}

.page-gdpr__commitment-list,
.page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__commitment-list li,
.page-gdpr__security-list li {
  background-color: #1a1a1a;
  padding: 18px 25px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  font-size: 1.1em;
  line-height: 1.6;
  color: #f0f0f0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__list-icon {
  color: #FFD700;
  font-size: 1.4em;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #3F0071; /* Deep purple button */
  color: #FFD700; /* Gold text */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__contact-button:hover {
  background-color: #5a00a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__faq-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-gdpr__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
}

.page-gdpr__final-cta {
  text-align: center;
  padding: 80px 20px;
  background-color: #3F0071; /* Deep purple background for final CTA */
  border-radius: 0;
  margin-bottom: 0;
}

.page-gdpr__final-cta .page-gdpr__section-title {
  color: #FFD700;
}

.page-gdpr__final-cta .page-gdpr__section-title::after {
  background-color: #FFD700;
}

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

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 20px;
  }
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__hero-button,
  .page-gdpr__final-cta-button {
    padding: 15px 30px;
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 15px;
  }
  .page-gdpr__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-gdpr__features-grid,
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__commitment-list li,
  .page-gdpr__security-list li {
    font-size: 0.95em;
    padding: 15px 20px;
  }
  .page-gdpr__list-icon {
    font-size: 1.2em;
    margin-right: 10px;
  }
  .page-gdpr__faq-question {
    font-size: 1.2em;
  }

  /* Critical: Prevent content overflow on mobile */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-button,
  .page-gdpr__final-cta-button {
    width: 100%;
    max-width: 280px;
  }
  .page-gdpr__contact-button {
    width: 100%;
    max-width: 280px;
  }
  .page-gdpr__hero-image img {
    filter: brightness(0.4); /* Make background image even more subtle on small screens */
  }
}