.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);
}

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
}

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

.page-gdpr__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 60px 20px;
  text-align: center;
  z-index: 1;
}

.page-gdpr__hero-content {
  background: rgba(10, 25, 47, 0.7); /* Primary color with transparency */
  padding: 40px;
  border-radius: 10px;
}

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

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

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

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

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

.page-gdpr__section-header {
  text-align: center;
  margin-bottom: 50px;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-gdpr__section-intro {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  color: #555555;
}

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

.page-gdpr__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
}

.page-gdpr__feature-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Enforce min 200px, but allow larger display */
  min-width: 200px;
  min-height: 200px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-gdpr__feature-title {
  font-size: 1.8em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-gdpr__feature-text {
  font-size: 1em;
  color: #666666;
}

.page-gdpr__details-section {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 60px;
}

.page-gdpr__details-title {
  font-size: 2.2em;
  color: #0A192F;
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr__details-list {
  list-style: none;
  padding: 0;
}

.page-gdpr__details-item {
  background-color: #ffffff;
  border-left: 5px solid #FFD700; /* Auxiliary color accent */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
}

.page-gdpr__details-item strong {
  color: #0A192F;
}

.page-gdpr__details-item a {
  color: #0A192F;
  text-decoration: underline;
}

.page-gdpr__details-item a:hover {
  color: #FFD700;
}

.page-gdpr__contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
  background-color: #0A192F; /* Primary background */
  color: #ffffff;
  border-radius: 10px;
  margin-bottom: 60px;
}

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

.page-gdpr__contact-text {
  font-size: 1.1em;
  max-width: 700px;
  margin-bottom: 30px;
}

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

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

.page-gdpr__contact-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Enforce min 200px, but allow larger display */
  min-width: 200px;
  min-height: 200px;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__cta-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0A192F, #1f3b60); /* Gradient with primary color */
  color: #ffffff;
  border-radius: 10px;
  margin-bottom: 40px;
}

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

.page-gdpr__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__cta-button--primary {
  background-color: #FFD700;
  color: #0A192F;
}

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

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

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

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
  }

  .page-gdpr__hero-content {
    padding: 20px;
  }

  .page-gdpr__section-title,
  .page-gdpr__details-title,
  .page-gdpr__contact-title,
  .page-gdpr__cta-title {
    font-size: 1.8em;
  }

  .page-gdpr__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__cta-button {
    width: 100%;
    max-width: 300px; /* Constrain button width on mobile */
  }

  .page-gdpr__content-area img, .page-gdpr__feature-image, .page-gdpr__contact-image {
    max-width: 100%;
    height: auto;
  }

  .page-gdpr__hero-image img {
    max-width: 100%;
    height: auto;
  }

  .page-gdpr__feature-image,
  .page-gdpr__contact-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}