/* 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); /* Space for fixed header */
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Constrain hero container width */
  margin: 0 auto;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-gdpr__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffc107; /* Auxiliary color for highlight */
  font-weight: bold;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #007bff; /* Main color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-gdpr__cta-button:hover {
  background-color: #0056b3; /* Darker main color on hover */
}

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

.page-gdpr__section--alt-background {
  background-color: #ffffff;
}

.page-gdpr__content-area {
  max-width: 1000px;
  margin: 0 auto;
}

.page-gdpr__content-area--center {
  text-align: center;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #007bff; /* Main color */
  margin-bottom: 30px;
  text-align: center;
}

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

.page-gdpr__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__list-item {
  background-color: #eaf6ff; /* Light blue background for list items */
  border-left: 5px solid #007bff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 1.05em;
}

.page-gdpr__list-item strong {
  color: #007bff;
}

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

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

.page-gdpr__section--cta {
  background-color: #007bff; /* Main color background */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-gdpr__section--cta .page-gdpr__section-title {
  color: #ffc107; /* Auxiliary color for CTA title */
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color */
  color: #333333;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-gdpr__contact-button:hover {
  background-color: #e0a800; /* Darker auxiliary color on hover */
}

.page-gdpr__paragraph--small {
  font-size: 0.9em;
  margin-top: 30px;
}

.page-gdpr__paragraph--small .page-gdpr__link {
  color: #ffc107;
}

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

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

  .page-gdpr__cta-button,
  .page-gdpr__contact-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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

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

  /* Ensure images do not overflow on mobile */
  .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__section-title {
    font-size: 1.8em;
  }

  .page-gdpr__list-item {
    padding: 10px 15px;
  }
}