.page-gdpr {
  color: #333333; /* Dark text for default 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__hero-section {
  background-color: #1A2B4C; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B4C;
  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;
  position: relative;
  z-index: 1;
}

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

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

.page-gdpr__article {
  margin-bottom: 40px;
}

.page-gdpr__article-title {
  font-size: 2.2em;
  color: #1A2B4C;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-gdpr__article-paragraph {
  font-size: 1em;
  margin-bottom: 20px;
}

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

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

.page-gdpr__feature-icon {
  width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__feature-heading {
  font-size: 1.5em;
  color: #1A2B4C;
  margin-bottom: 15px;
}

.page-gdpr__feature-text {
  font-size: 0.95em;
  color: #555555;
}

.page-gdpr__read-more-link {
  display: inline-block;
  color: #1A2B4C;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  border-bottom: 2px solid #FFD700;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-gdpr__read-more-link:hover {
  color: #FFD700;
  border-color: #1A2B4C;
}

.page-gdpr__contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 30px;
  background-color: #1A2B4C;
  border-radius: 8px;
  color: #ffffff;
  text-align: center;
}

.page-gdpr__contact-image {
  width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
  object-fit: cover;
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-gdpr__contact-button--primary {
  background-color: #FFD700;
  color: #1A2B4C;
}

.page-gdpr__contact-button--primary:hover {
  background-color: #e5c100;
}

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

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

  .page-gdpr__article-title {
    font-size: 1.8em;
  }

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

  .page-gdpr__feature-icon {
    width: 200px;
    height: auto;
  }

  .page-gdpr__contact-section {
    flex-direction: column;
  }

  .page-gdpr__contact-image {
    width: 250px;
  }

  /* Mobile content image overflow prevention */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}