.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;
  overflow: hidden;
  background-color: #0A192F; /* Main brand color for hero background */\  /* Hero image is handled by <img> tag, not background-image */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 60px 20px;
}

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

.page-gdpr__hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 3;
}

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

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

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary brand color for button */
  color: #0A192F; /* Main brand color for button text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #0A192F; /* Main brand color for content sections */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-gdpr__content-area:last-of-type {
  border-bottom: none;
}

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

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-gdpr__commitment-item {
  background-color: rgba(255, 215, 0, 0.05); /* Subtle background for items */
  padding: 30px;
  border-radius: 10px;
  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__commitment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-gdpr__commitment-image {
  width: 100%; /* Ensure image fills its container */
  height: auto;
  max-width: 400px; /* Constrain max width to ensure it's not too large */
  min-width: 200px; /* Minimum size for content images */
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__item-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-gdpr__item-description {
  font-size: 1em;
  color: #cccccc;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-gdpr__rights-item {
  background-color: rgba(255, 215, 0, 0.08); /* Slightly more prominent background for rights */
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__rights-item .page-gdpr__item-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-gdpr__rights-item .page-gdpr__item-description {
  font-size: 1em;
  color: #f0f0f0;
}

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

.page-gdpr__step-card {
  background-color: rgba(255, 215, 0, 0.05);
  padding: 30px;
  border-radius: 10px;
  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__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-gdpr__step-image {
  width: 100%; /* Ensure image fills its container */
  height: auto;
  max-width: 400px; /* Constrain max width to ensure it's not too large */
  min-width: 200px; /* Minimum size for content images */
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-gdpr__step-description {
  font-size: 1em;
  color: #cccccc;
}

.page-gdpr__contact {
  text-align: center;
}

.page-gdpr__contact-buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-gdpr__button--secondary {
  background-color: #0A192F; /* Main brand color for secondary button */
  color: #FFD700; /* Auxiliary brand color for text */
  border: 2px solid #FFD700;
}

.page-gdpr__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-gdpr__cta-section {
  background: linear-gradient(135deg, #0A192F 0%, #000000 100%); /* Gradient background for CTA */
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-gdpr__cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary brand color for CTA button */
  color: #0A192F; /* Main brand color for button text */
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-gdpr__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

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

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1.1em;
  }
  .page-gdpr__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__content-area {
    padding: 40px 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__paragraph {
    font-size: 1em;
  }
  .page-gdpr__commitment-grid,
  .page-gdpr__implementation-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-gdpr__commitment-item,
  .page-gdpr__rights-item,
  .page-gdpr__step-card {
    padding: 20px;
  }
  .page-gdpr__item-title {
    font-size: 1.5em;
  }
  .page-gdpr__item-description {
    font-size: 1em;
  }
  .page-gdpr__cta-section {
    padding: 60px 15px;
  }
  .page-gdpr__cta-title {
    font-size: 2em;
  }
  .page-gdpr__cta-description {
    font-size: 1.1em;
  }
  .page-gdpr__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Mobile content image constraint */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small even on mobile */
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__cta-title {
    font-size: 1.8em;
  }
  .page-gdpr__contact-buttons {
    flex-direction: column;
  }
  .page-gdpr__button {
    width: 100%;
  }
}