.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);
}

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Main color for hero background */
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px; /* Limit container width for desktop */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-gdpr__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF; /* White text for hero content */
  padding: 20px;
  max-width: 90%;
  z-index: 10;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-gdpr__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-gdpr__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-gdpr__button--register:hover {
  background-color: #F0F0F0;
  color: #000000;
}

.page-gdpr__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-gdpr__button--login:hover {
  background-color: #E0A83D;
  color: #000000;
}

.page-gdpr__button--contact {
  background-color: #000000;
  color: #FCBC45;
  border: 2px solid #000000;
}

.page-gdpr__button--contact:hover {
  background-color: #333333;
  color: #FCBC45;
}

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

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

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 10px auto 0;
}

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

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

.page-gdpr__feature-item {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-gdpr__feature-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__feature-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block; /* Ensure image is block level */
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__feature-heading {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

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

.page-gdpr__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 40px;
  font-size: 1.1em;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  color: #333333;
}

.page-gdpr__list-item strong {
  color: #000000;
}

.page-gdpr__call-to-action {
  background-color: #000000;
  color: #FFFFFF;
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
}

.page-gdpr__call-to-action-heading {
  font-size: 2.2em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-gdpr__call-to-action-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__call-to-action-subtext {
  font-size: 0.9em;
  margin-top: 20px;
  color: #CCCCCC;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__hero-description {
    font-size: 1.1em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__feature-heading {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__button {
    width: 100%;
    padding: 10px 20px;
  }
  .page-gdpr__content-area {
    padding: 30px 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__paragraph, .page-gdpr__list-item, .page-gdpr__feature-text {
    font-size: 0.95em;
  }
  .page-gdpr__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__feature-image {
    max-width: 100%; /* Ensure images are responsive */
    width: 100%;
    height: auto;
  }
  .page-gdpr__call-to-action {
    padding: 30px 20px;
  }
  .page-gdpr__call-to-action-heading {
    font-size: 1.8em;
  }
  .page-gdpr__call-to-action-text {
    font-size: 1em;
  }

  /* Mobile content area images must not cause horizontal scroll */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.6em;
  }
  .page-gdpr__hero-description {
    font-size: 0.9em;
  }
  .page-gdpr__hero-content {
    padding: 15px;
  }
  .page-gdpr__button {
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__feature-heading {
    font-size: 1.4em;
  }
  .page-gdpr__list {
    margin-left: 15px;
  }
  .page-gdpr__call-to-action-heading {
    font-size: 1.5em;
  }
}