.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 below fixed header */
}

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #FFD700, #1E90FF);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden; /* For potential background effects */
}

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

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Primary color */
  color: #1E90FF; /* Auxiliary color for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__hero-button:hover {
  background-color: #e6c200;
  color: #007bff;
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #1E90FF; /* Auxiliary color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.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-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.page-gdpr__principle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-gdpr__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__card-title {
  font-size: 1.4em;
  color: #FFD700; /* Primary color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__card-description {
  font-size: 1em;
  color: #666666;
}

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

.page-gdpr__right-item {
  background-color: #f9f9f9;
  border-left: 5px solid #1E90FF; /* Auxiliary color accent */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__right-title {
  font-size: 1.3em;
  color: #1E90FF; /* Auxiliary color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__right-description {
  font-size: 0.95em;
  color: #555555;
}

.page-gdpr__contact-cta {
  text-align: center;
  margin-top: 60px;
  padding: 30px;
  background-color: #e6f2ff; /* Light blue background */
  border-radius: 10px;
}

.page-gdpr__contact-cta p {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #333333;
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #1E90FF; /* Auxiliary color */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-gdpr__contact-button:hover {
  background-color: #007bff;
}

.page-gdpr__security-section {
  background-color: #f5f5f5;
  padding: 60px 0;
}

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

.page-gdpr__feature-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-gdpr__feature-icon {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__feature-title {
  font-size: 1.4em;
  color: #FFD700; /* Primary color */
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-gdpr__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(90deg, #1E90FF, #FFD700);
  border-radius: 10px;
  color: #ffffff;
}

.page-gdpr__cta-bottom p {
  font-size: 1.3em;
  margin-bottom: 25px;
  font-weight: 500;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #ffffff;
  color: #1E90FF; /* Auxiliary color */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button:hover {
  background-color: #f0f0f0;
  color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__principles-grid, .page-gdpr__rights-list, .page-gdpr__security-features {
    grid-template-columns: 1fr;
  }
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }
  .page-gdpr__content-area {
    padding: 30px 15px;
  }
  .page-gdpr__hero-button, .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.6em;
  }
  .page-gdpr__hero-description {
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__section-intro {
    font-size: 0.9em;
  }
  .page-gdpr__card-title, .page-gdpr__right-title, .page-gdpr__feature-title {
    font-size: 1.2em;
  }
}