.page-gdpr {
  color: #ffffff; /* Light text for dark body background */
  background-color: #000000; /* Ensuring section backgrounds are dark, or transparent to inherit body */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

.page-gdpr__hero-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 600px;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

.page-gdpr__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent dark background for readability */
  border-radius: 10px;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  color: #FCBC45;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

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

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

.page-gdpr__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

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

.page-gdpr__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
  border-color: #FCBC45;
}

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark for section background */
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-gdpr__section:last-of-type {
  margin-bottom: 0;
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

.page-gdpr__paragraph--cta {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
}

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

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

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

.page-gdpr__card {
  background-color: #000000; /* Darker background for cards */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.page-gdpr__card-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small, minimum 200px */
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__card-title {
  font-size: 1.6em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-gdpr__card-description {
  font-size: 1em;
  color: #cccccc;
  text-align: justify;
}

.page-gdpr__contact-image {
  display: block;
  margin: 40px auto;
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__cta-section {
  text-align: center;
  background-color: #0a0a0a;
  padding: 80px 20px;
}

.page-gdpr__cta-image {
  display: block;
  margin: 40px auto;
  max-width: 1000px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 30px;
}

.page-gdpr__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  min-width: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2.2em;
  }
  .page-gdpr__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: var(--header-offset, 120px); /* Ensure mobile also has offset */
  }
  .page-gdpr__hero-section {
    padding: 60px 15px;
    min-height: 500px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1.1em;
  }
  .page-gdpr__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__button {
    width: 100%;
    max-width: 300px;
  }
  .page-gdpr__section {
    padding: 40px 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr__paragraph {
    font-size: 1em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__card-image,
  .page-gdpr__contact-image,
  .page-gdpr__cta-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-gdpr__card {
    padding: 20px;
  }
  .page-gdpr__button--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
  /* Mobile content area image prevention of overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__container {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 0.95em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__button {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-gdpr__card-title {
    font-size: 1.4em;
  }
  .page-gdpr__paragraph--cta {
    font-size: 1em;
  }
}