.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); /* Ensure content is not hidden by fixed header */
  background-color: #FFFFFF;
}

.page-gdpr__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF; /* White text on dark overlay/image */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero */
  overflow: hidden;
  padding: 20px;
}

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

.page-gdpr__hero-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Slightly darker background for text area */
  border-radius: 8px;
}

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

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

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-gdpr__hero-button:hover {
  background-color: #E6A83E;
}

.page-gdpr__content-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
}

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

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

.page-gdpr__feature-item, .page-gdpr__right-item {
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-gdpr__feature-icon {
  width: 200px; /* Min size 200px */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-gdpr__feature-title, .page-gdpr__right-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

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

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

.page-gdpr__data-list-item {
  background-color: #F0F0F0;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #FCBC45;
  border-radius: 4px;
  font-size: 1.05em;
}

.page-gdpr__rights-footer-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  font-style: italic;
  color: #666666;
}

.page-gdpr__contact-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-gdpr__contact-info {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.page-gdpr__contact-link {
  color: #000000;
  text-decoration: underline;
}

.page-gdpr__contact-link:hover {
  color: #FCBC45;
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

/* Floating Buttons */
.page-gdpr__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-gdpr__floating-button {
  display: block;
  padding: 12px 20px;
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 120px; /* Ensure buttons are not too small */
}

.page-gdpr__floating-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-gdpr__floating-button--register {
  background-color: #000000;
  color: #FFFFFF; /* Register button color as text */
}

.page-gdpr__floating-button--login {
  background-color: #FCBC45;
  color: #000000;
}

/* Responsive Design */
@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__feature-grid, .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__content-section {
    padding: 40px 15px;
  }

  .page-gdpr__floating-buttons {
    flex-direction: row;
    bottom: 15px;
    right: 15px;
    left: 15px;
    justify-content: space-around;
  }

  .page-gdpr__floating-button {
    flex-grow: 1;
    padding: 10px 15px;
    font-size: 0.9em;
  }
  
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}