/* style/gdpr-compliance.css */
.page-gdpr-compliance {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color, assuming var(--secondary-color) for body is light */
  background-color: var(--secondary-color, #ffffff); /* Default to white if var not set */
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

.page-gdpr-compliance__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gdpr-compliance__container--center {
  text-align: center;
}

.page-gdpr-compliance__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #ffffff; /* Light text for hero */
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.page-gdpr-compliance__hero-content {
  max-width: 900px;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 1;
}

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

.page-gdpr-compliance__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
  color: #f0f0f0;
}

.page-gdpr-compliance__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr-compliance__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  min-width: 180px;
  text-align: center;
}

.page-gdpr-compliance__button--register {
  background-color: #ffffff; /* Register button color */
  color: #000000;
  border: 2px solid #ffffff;
}

.page-gdpr-compliance__button--register:hover {
  background-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
}

.page-gdpr-compliance__button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-gdpr-compliance__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
  transform: translateY(-3px);
}

.page-gdpr-compliance__hero-image {
  margin-top: 40px;
  max-width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr-compliance__hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-gdpr-compliance__introduction-section,
.page-gdpr-compliance__commitment-section,
.page-gdpr-compliance__rights-section,
.page-gdpr-compliance__security-section,
.page-gdpr-compliance__data-processing-section,
.page-gdpr-compliance__dpo-section,
.page-gdpr-compliance__updates-section,
.page-gdpr-compliance__cta-section {
  padding: 60px 0;
  border-bottom: 1px solid #eeeeee;
}

.page-gdpr-compliance__cta-section {
  border-bottom: none;
  background-color: #000000; /* Dark background for CTA */
  color: #ffffff; /* Light text for CTA */
  padding: 80px 20px;
}

.page-gdpr-compliance__cta-section .page-gdpr-compliance__section-title,
.page-gdpr-compliance__cta-section .page-gdpr-compliance__paragraph {
  color: #ffffff;
}

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

.page-gdpr-compliance__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-gdpr-compliance__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  padding-left: 0;
}

.page-gdpr-compliance__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-gdpr-compliance__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

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

.page-gdpr-compliance__right-card {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr-compliance__right-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr-compliance__card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-gdpr-compliance__card-text {
  font-size: 1em;
  color: #555555;
}

.page-gdpr-compliance__contact-info {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 700px;
  text-align: center;
}

.page-gdpr-compliance__contact-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #333333;
}

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

.page-gdpr-compliance__link:hover {
  color: #FCBC45;
}

.page-gdpr-compliance__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive design */
@media (max-width: 1024px) {
  .page-gdpr-compliance__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr-compliance__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr-compliance__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr-compliance__hero-description {
    font-size: 1em;
  }
  .page-gdpr-compliance__button {
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
    width: 100%;
  }
  .page-gdpr-compliance__hero-buttons {
    flex-direction: column;
  }
  .page-gdpr-compliance__section-title {
    font-size: 1.8em;
  }
  .page-gdpr-compliance__introduction-section,
  .page-gdpr-compliance__commitment-section,
  .page-gdpr-compliance__rights-section,
  .page-gdpr-compliance__security-section,
  .page-gdpr-compliance__data-processing-section,
  .page-gdpr-compliance__dpo-section,
  .page-gdpr-compliance__updates-section,
  .page-gdpr-compliance__cta-section {
    padding: 40px 0;
  }
  .page-gdpr-compliance__paragraph,
  .page-gdpr-compliance__list-item,
  .page-gdpr-compliance__card-text,
  .page-gdpr-compliance__contact-item {
    font-size: 0.95em;
  }
  .page-gdpr-compliance__image,
  .page-gdpr-compliance__hero-image img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
  }
  /* Ensure content area images are responsive and don't overflow */
  .page-gdpr-compliance img {
    max-width: 100%;
    height: auto;
  }
}

/* Specific image styling rules */
/* Ensure no filter is used on any images */
.page-gdpr-compliance img {
  filter: none !important; /* Explicitly override any potential filter */
}

/* Content area images CSS dimensions lower limit */
/* This rule applies to any img within .page-gdpr-compliance */
.page-gdpr-compliance img {
  min-width: 200px;
  min-height: 200px;
  /* Use max-width: 100%; height: auto; for responsiveness */
  max-width: 100%;
  height: auto;
}