.page-gdpr {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

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

.page-gdpr__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.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: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__hero-button:hover {
  background-color: #e0a53a;
  transform: translateY(-3px);
}

.page-gdpr__content-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.page-gdpr__container {
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

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

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

.page-gdpr__card {
  background-color: #F8F8F8;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-gdpr__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__card-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
}

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

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

.page-gdpr__main-button {
  display: block;
  width: fit-content;
  margin: 30px auto 50px auto;
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__main-button:hover {
  background-color: #e0a53a;
  transform: translateY(-3px);
}

.page-gdpr__cta-banner {
  position: relative;
  margin-top: 60px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-gdpr__cta-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr__cta-description {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #F0F0F0;
}

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

.page-gdpr__cta-button:hover {
  background-color: #e0a53a;
  transform: translateY(-3px);
}

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

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: var(--header-offset, 120px);
  }
  .page-gdpr__hero-content {
    max-width: 90%;
  }
  .page-gdpr__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-gdpr__hero-description {
    font-size: 0.9em;
    margin-bottom: 20px;
  }
  .page-gdpr__hero-button,
  .page-gdpr__main-button,
  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__paragraph {
    font-size: 1em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__card-image {
    height: 200px;
  }
  .page-gdpr__cta-title {
    font-size: 1.8em;
  }
  .page-gdpr__cta-description {
    font-size: 0.9em;
  }
  /* Ensure content images do not overflow */
  .page-gdpr__hero-image,
  .page-gdpr__card-image,
  .page-gdpr__cta-image,
  .page-gdpr__container img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__container {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.5em;
  }
  .page-gdpr__hero-description {
    font-size: 0.8em;
  }
  .page-gdpr__cta-title {
    font-size: 1.5em;
  }
  .page-gdpr__cta-description {
    font-size: 0.8em;
  }
  .page-gdpr__hero-button,
  .page-gdpr__main-button,
  .page-gdpr__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}