/* style/gdpr.css */
.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 not hidden by fixed header */
  background-color: #FFFFFF;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #000000;
  color: #FFFFFF;
}

.page-gdpr__hero-content {
  max-width: 800px;
  margin-bottom: 40px;
}

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

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

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1em;
}

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

.page-gdpr__hero-image-wrapper {
  max-width: 100%;
  overflow: hidden; /* Ensure image doesn't overflow its container */
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: left;
}

.page-gdpr__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

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

.page-gdpr__paragraph {
  font-size: 1em;
  margin-bottom: 20px;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
}

.page-gdpr__image-wrapper {
  margin: 40px auto;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
  font-size: 1em;
}

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

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

.page-gdpr__cta-section .page-gdpr__section-title {
  color: #FFFFFF;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1em;
  min-width: 180px;
}

.page-gdpr__cta-button--register {
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000;
}

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

.page-gdpr__cta-button--privacy {
  background-color: #FFFFFF; /* Register color for CTA */
  color: #000000;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }

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

  .page-gdpr__hero-section {
    padding: 60px 15px 30px;
  }

  .page-gdpr__section {
    padding: 40px 15px;
  }

  .page-gdpr__hero-image,
  .page-gdpr__image {
    max-width: 100%;
    height: auto;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-gdpr__cta-button {
    width: 100%;
    max-width: 280px;
  }
}

/* Ensure all images within .page-gdpr are responsive and not too small on mobile */
@media (max-width: 768px) {
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Keep minimum size even on mobile */
    min-height: 200px; /* Keep minimum size even on mobile */
  }
}