.page-gdpr {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 0 auto 20px auto;
  padding: 20px;
}

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

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

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for action */
  color: #000000; /* Dark text for FCBC45 background */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

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

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

.page-gdpr__section-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
}

.page-gdpr__section-text {
  font-size: 1em;
  color: #333333;
  text-align: left;
}

.page-gdpr__card-image-wrapper {
  margin-bottom: 20px;
}

.page-gdpr__card-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

.page-gdpr__contact-section {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

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

.page-gdpr__contact-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 8px;
}

.page-gdpr__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-top: 40px;
}

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

.page-gdpr__cta-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFFFFF; /* Register color */
  color: #000000;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

@media (min-width: 769px) {
  .page-gdpr__hero-section {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    padding: 80px 40px;
  }

  .page-gdpr__hero-content {
    flex: 1;
    padding-right: 40px;
    margin-bottom: 0;
  }

  .page-gdpr__hero-image-wrapper {
    flex: 1;
    margin-top: 0;
  }

  .page-gdpr__content-area {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-gdpr__contact-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }

  .page-gdpr__section-title {
    font-size: 1.5em;
  }

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

  .page-gdpr__hero-button,
  .page-gdpr__contact-button,
  .page-gdpr__cta-button {
    width: 100%;
    max-width: 300px;
  }

  .page-gdpr__content-area img,
  .page-gdpr__contact-image {
    max-width: 100%;
    height: auto;
  }
}