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

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

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

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

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

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

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  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 color for CTA */
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-width: 200px;
  text-align: center;
  box-sizing: border-box;
}

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

.page-gdpr__introduction-section,
.page-gdpr__rights-section,
.page-gdpr__protection-section,
.page-gdpr__contact-section,
.page-gdpr__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-gdpr__introduction-section,
.page-gdpr__contact-section,
.page-gdpr__cta-section {
  text-align: center;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #000000;
}

.page-gdpr__section-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__right-card {
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-gdpr__right-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: cover;
}

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

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

.page-gdpr__protection-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.page-gdpr__protection-text {
  flex: 2;
  min-width: 300px;
  max-width: 600px;
}

.page-gdpr__protection-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.page-gdpr__protection-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: cover;
}

.page-gdpr__bullet-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
  text-align: left;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gdpr__contact-info {
  margin-top: 30px;
  font-size: 1.1em;
  color: #333333;
}

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

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

.page-gdpr__contact-button,
.page-gdpr__cta-button {
  display: inline-block;
  background-color: #000000; /* Main color for CTA */
  color: #FFFFFF;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 30px;
  min-width: 200px;
  text-align: center;
  box-sizing: border-box;
}

.page-gdpr__contact-button:hover,
.page-gdpr__cta-button:hover {
  background-color: #333333;
}

.page-gdpr__cta-section {
  background-color: #F0F0F0;
  padding: 80px 20px;
}

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

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

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

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-gdpr__hero-section {
    padding: 60px 20px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__protection-content {
    flex-direction: column;
  }
  .page-gdpr__protection-text, .page-gdpr__protection-image {
    max-width: 100%;
    min-width: unset;
  }
  /* Mobile image scaling for content area */
  .page-gdpr__container img,
  .page-gdpr__rights-section img,
  .page-gdpr__protection-section img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__cta-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-button,
  .page-gdpr__contact-button,
  .page-gdpr__cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__cta-title {
    font-size: 1.6em;
  }
  .page-gdpr__hero-button,
  .page-gdpr__contact-button,
  .page-gdpr__cta-button {
    padding: 12px 20px;
    font-size: 0.9em;
  }
}