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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px; /* Minimum height for hero section */
  background-color: #000000; /* Fallback background */
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6; /* Slightly dim the image to make text pop */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  padding: 20px;
  max-width: 900px;
}

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FCBC45; /* Login button color for emphasis */
}

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

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

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

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #333333;
  text-align: justify;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr__list-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  line-height: 1.7;
  font-size: 1em;
  color: #333333;
}

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

.page-gdpr__image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 8px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
}

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

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

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

.page-gdpr__cta-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-gdpr__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.7;
}

.page-gdpr__cta-button--primary {
  background-color: #FCBC45;
  color: #000000;
  margin: 0 10px;
}

.page-gdpr__cta-button--primary:hover {
  background-color: #e0a53b;
}

.page-gdpr__cta-button--secondary {
  background-color: #FFFFFF;
  color: #000000;
  margin: 0 10px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__image--left, .page-gdpr__image--right {
    float: none;
    margin: 20px auto;
  }
  .page-gdpr__paragraph {
    clear: both;
  }
}

@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__paragraph, .page-gdpr__list-item {
    font-size: 0.95em;
  }
  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 0;
  }
  .page-gdpr__cta-title {
    font-size: 2.2em;
  }
  .page-gdpr__cta-description {
    font-size: 1.1em;
  }
  .page-gdpr__image {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__cta-button--primary, .page-gdpr__cta-button--secondary {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .page-gdpr__hero-section {
    min-height: 300px;
  }
  .page-gdpr__content-area img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.6em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__hero-section {
    padding: 40px 15px;
  }
  .page-gdpr__content-area {
    padding: 15px;
  }
  .page-gdpr__cta-title {
    font-size: 1.8em;
  }
  .page-gdpr__cta-description {
    font-size: 1em;
  }
}