.page-gdpr {
  color: #333333; /* Dark text for default white body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure header offset for PC */
}

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

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

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E0B700;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

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

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
  min-width: 200px; /* Ensure buttons are large enough */
  text-align: center;
}

.page-gdpr__button--primary {
  background-color: #E0B700;
  color: #0A1931;
}

.page-gdpr__button--primary:hover {
  background-color: #ffda47;
}

.page-gdpr__button--secondary {
  background-color: transparent;
  border: 2px solid #E0B700;
  color: #E0B700;
}

.page-gdpr__button--secondary:hover {
  background-color: #E0B700;
  color: #0A1931;
}

.page-gdpr__button--tertiary {
  background-color: #0A1931;
  color: #E0B700;
  border: 2px solid #0A1931;
}

.page-gdpr__button--tertiary:hover {
  background-color: #E0B700;
  color: #0A1931;
  border-color: #E0B700;
}

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

.page-gdpr__section {
  margin-bottom: 60px;
}

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

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

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

.page-gdpr__card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-gdpr__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px; /* Enforce min size for content images */
  min-height: 200px; /* Enforce min size for content images */
}

.page-gdpr__card-title {
  font-size: 1.8em;
  color: #0A1931;
  margin-bottom: 20px;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1em;
  padding-left: 25px;
  position: relative;
}

.page-gdpr__list-item::before {
  content: '✔';
  color: #E0B700;
  position: absolute;
  left: 0;
}

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

.page-gdpr__feature-item {
  text-align: center;
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-gdpr__feature-icon {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size for content images */
  min-height: 200px; /* Enforce min size for content images */
}

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

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

.page-gdpr__contact-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f0f0f0;
  border-radius: 10px;
}

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

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__button {
    min-width: unset;
    width: 100%;
    margin: 10px 0;
  }
  .page-gdpr__content-area {
    padding: 40px 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__card-image, .page-gdpr__feature-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Maintain min size for mobile */
    min-height: 200px; /* Maintain min size for mobile */
  }
  .page-gdpr__grid, .page-gdpr__feature-list {
    grid-template-columns: 1fr;
  }
  .page-gdpr__paragraph {
    text-align: left;
  }
  .page-gdpr__contact-section {
    padding: 40px 15px;
  }
  /* Ensure no horizontal scrolling */
  .page-gdpr {
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__card-title {
    font-size: 1.4em;
  }
  .page-gdpr__feature-title {
    font-size: 1.2em;
  }
}