.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__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gdpr__hero-section {
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

.page-gdpr__button--register {
  background-color: #FFFFFF; /* Custom color for Register */
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-gdpr__button--register:hover {
  background-color: #e0e0e0;
  color: #000000;
}

.page-gdpr__button--learn-more {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-gdpr__button--learn-more: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: 1;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background */
}

.page-gdpr__commitment-section,
.page-gdpr__rights-section,
.page-gdpr__contact-section,
.page-gdpr__cta-section {
  padding: 60px 0;
}

.page-gdpr__commitment-section {
  background-color: #f9f9f9;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
  color: #000000;
}

.page-gdpr__section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-gdpr__commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

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

.page-gdpr__commitment-image {
  width: 400px; /* Ensure minimum size */
  height: 300px; /* Ensure minimum size */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-gdpr__item-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #000000;
}

.page-gdpr__item-description {
  color: #555555;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
}

.page-gdpr__rights-item {
  background-color: #FFFFFF;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid #000000;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  font-size: 1.05em;
  color: #333333;
}

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

.page-gdpr__link {
  color: #000000;
  text-decoration: underline;
}

.page-gdpr__link:hover {
  color: #FCBC45;
}

.page-gdpr__contact-section {
  background-color: #f9f9f9;
  text-align: center;
}

.page-gdpr__contact-info {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-gdpr__contact-detail {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #333333;
}

.page-gdpr__contact-image {
  width: 600px; /* Ensure minimum size */
  height: 400px; /* Ensure minimum size */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.page-gdpr__button--login {
  background-color: #FCBC45; /* Custom color for Login */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-gdpr__button--login:hover {
  background-color: #e6a73a;
  color: #000000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__commitment-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__commitment-image,
  .page-gdpr__contact-image {
    width: 100%;
    height: auto;
    max-width: 400px; /* Maintain minimum visual size */
    max-height: 300px;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description,
  .page-gdpr__section-text,
  .page-gdpr__item-description,
  .page-gdpr__rights-item,
  .page-gdpr__contact-detail,
  .page-gdpr__cta-description {
    font-size: 1em;
  }
  .page-gdpr__hero-actions,
  .page-gdpr__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-gdpr__commitment-section,
  .page-gdpr__rights-section,
  .page-gdpr__contact-section,
  .page-gdpr__cta-section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__cta-title {
    font-size: 2.2em;
  }
  /* Ensure all images within .page-gdpr are responsive and not smaller than 200px */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }
  .page-gdpr__commitment-image,
  .page-gdpr__contact-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__cta-title {
    font-size: 1.8em;
  }
  .page-gdpr__commitment-image,
  .page-gdpr__contact-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }
}