/* style/gdpr.css */
.page-gdpr {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f8f8f8; /* Light background for the main content area */
}

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensures content is below the fixed header */
}

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

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

.page-gdpr__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  z-index: 1;
  background-color: rgba(26, 32, 44, 0.7); /* Dark blue auxiliary color with transparency */
  padding: 40px;
  border-radius: 10px;
}

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold primary color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold primary color */
  color: #1A202C; /* Dark blue auxiliary color */
  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__hero-button:hover {
  background-color: #e6c200;
  color: #0d1017;
}

.page-gdpr__content-wrapper {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 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.5em;
  color: #1A202C; /* Dark blue auxiliary color */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid #FFD700; /* Gold accent */
  padding-bottom: 15px;
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: #1A202C;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

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

.page-gdpr__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-gdpr__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD700; /* Gold primary color */
  font-weight: bold;
}

.page-gdpr__link {
  color: #FFD700; /* Gold primary color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-gdpr__button {
  display: inline-block;
  background-color: #1A202C; /* Dark blue auxiliary color */
  color: #FFD700; /* Gold primary color */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-top: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__button:hover {
  background-color: #0d1017;
  color: #e6c200;
}

.page-gdpr__button--cta {
  background-color: #FFD700; /* Gold primary color */
  color: #1A202C; /* Dark blue auxiliary color */
}

.page-gdpr__button--cta:hover {
  background-color: #e6c200;
  color: #0d1017;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 800px; /* Ensure images don't stretch too wide */
  min-width: 200px; /* Minimum size requirement */
}

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

  .page-gdpr__hero-description {
    font-size: 1em;
  }

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

  .page-gdpr__sub-title {
    font-size: 1.5em;
  }

  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 0.95em;
  }

  .page-gdpr__hero-content {
    padding: 20px;
    max-width: 90%;
  }

  .page-gdpr__content-wrapper {
    margin: 20px auto;
    padding: 0 15px;
  }

  .page-gdpr__image {
    max-width: 100%;
    min-width: 200px; /* Ensure images are not too small on mobile */
    height: auto; /* Maintain aspect ratio */
  }

  /* Ensure content area images do not cause horizontal scroll */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.5em;
  }

  .page-gdpr__hero-description {
    font-size: 0.9em;
  }

  .page-gdpr__hero-button {
    padding: 10px 20px;
    font-size: 1em;
  }

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

  .page-gdpr__sub-title {
    font-size: 1.3em;
  }
}