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

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF; /* White text for dark background */
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

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

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

.page-gdpr__hero-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0 10px;
}

.page-gdpr__hero-button--register {
  background-color: #FFFFFF; /* Custom color for Register button */
  color: #000000; /* Dark text for white background */
}

.page-gdpr__hero-button--register:hover {
  background-color: #FCBC45; /* Login color on hover */
  color: #000000;
}

.page-gdpr__hero-button--login {
  background-color: #FCBC45; /* Custom color for Login button */
  color: #000000; /* Dark text for login button */
}

.page-gdpr__hero-button--login:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.page-gdpr__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #000000; /* Main color for titles */
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__text-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.page-gdpr__text-block p {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  font-size: 1.1em;
  color: #333333;
}

.page-gdpr__text-block--reverse .page-gdpr__image-inline {
  order: 2;
}

.page-gdpr__text-block--reverse p {
  order: 1;
}

.page-gdpr__image-inline {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 20px auto; /* Center image if it doesn't take full width */
}

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

.page-gdpr__grid-item {
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #000000; /* Main color as accent */
}

.page-gdpr__grid-title {
  font-size: 1.5em;
  color: #000000; /* Main color for grid titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__grid-item p {
  color: #555555;
  font-size: 1em;
}

.page-gdpr__contact-info {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #F8F8F8;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #000000; /* Main color for contact button */
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  margin: 10px;
}

.page-gdpr__contact-button:hover {
  background-color: #FCBC45; /* Login color on hover */
}

.page-gdpr__privacy-link {
  display: inline-block;
  color: #000000; /* Main color for privacy link */
  text-decoration: underline;
  margin: 10px;
  font-size: 1.0em;
}

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

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

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

  .page-gdpr__hero-button {
    padding: 10px 20px;
    font-size: 1em;
    margin: 5px;
  }

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

  .page-gdpr__text-block p, .page-gdpr__grid-item p, .page-gdpr__contact-info p {
    font-size: 0.95em;
    padding: 10px;
  }

  .page-gdpr__image-inline {
    max-width: 100%;
    height: auto; /* Ensures images are responsive and don't overflow */
  }

  .page-gdpr__contact-button, .page-gdpr__privacy-link {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-section {
    padding-bottom: 30px;
  }

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

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

  .page-gdpr__hero-button {
    display: block;
    width: 80%;
    margin: 10px auto;
  }

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

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

  .page-gdpr__text-block {
    flex-direction: column;
  }

  .page-gdpr__text-block--reverse .page-gdpr__image-inline {
    order: initial;
  }

  .page-gdpr__text-block--reverse p {
    order: initial;
  }

  .page-gdpr__image-inline {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
  }

  .page-gdpr__contact-info {
    padding: 20px;
  }
}