.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); /* Account for fixed header */
}

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

.page-gdpr__hero-section {
  background-color: #0A192F; /* Primary dark background for hero */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  line-height: 1.2;
}

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

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

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: 8px;
  margin-top: 40px;
  object-fit: cover;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #0A192F; /* Primary dark color for section titles */
  text-align: center;
  margin: 60px 0 30px;
  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__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-gdpr__principle-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-gdpr__principle-card:hover {
  transform: translateY(-5px);
}

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

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

.page-gdpr__image-content {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: 8px;
  margin: 50px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

.page-gdpr__right-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-gdpr__item-title {
  font-size: 1.5em;
  color: #0A192F;
  margin-bottom: 10px;
}

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

.page-gdpr__button {
  display: inline-block;
  background-color: #0A192F;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  margin-right: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__button:hover {
  background-color: #1a304e;
  transform: translateY(-2px);
}

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

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

.page-gdpr__button--secondary {
  background-color: #555555;
  color: #ffffff;
}

.page-gdpr__button--secondary:hover {
  background-color: #666666;
}

.page-gdpr__implementation-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: center;
}

.page-gdpr__contact-item {
  margin-bottom: 10px;
}

.page-gdpr__link {
  color: #0A192F;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* 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-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1.1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__principles-grid, .page-gdpr__rights-list {
    grid-template-columns: 1fr;
  }
  .page-gdpr__hero-section {
    padding: 60px 15px 30px;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__button {
    margin-right: 10px;
    padding: 10px 20px;
  }
  .page-gdpr__text-content, .page-gdpr__card-text, .page-gdpr__item-text {
    font-size: 0.95em;
  }
  .page-gdpr__image-content {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
    min-width: 200px; /* Enforce minimum size on smaller screens as well */
    min-height: 200px;
  }
  .page-gdpr__contact-list {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__principles-grid, .page-gdpr__rights-list {
    gap: 20px;
  }
  .page-gdpr__button {
    display: block;
    width: fit-content;
    margin: 15px auto 0;
  }
  .page-gdpr__button + .page-gdpr__button {
    margin-top: 10px;
  }
}