.page-gdpr {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #007bff;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1em;
}

.page-gdpr__hero-button--primary {
  background-color: #28a745;
  color: #ffffff;
}

.page-gdpr__hero-button--primary:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

.page-gdpr__hero-button--secondary {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.page-gdpr__hero-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-gdpr__section {
  margin-bottom: 50px;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section:last-of-type {
  margin-bottom: 0;
}

.page-gdpr__section-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 25px;
  border-bottom: 3px solid #007bff;
  padding-bottom: 10px;
}

.page-gdpr__paragraph {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.8;
}

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

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

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

.page-gdpr__image-text-layout {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-gdpr__image-text-layout--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__content-image {
  flex: 0 0 40%;
  max-width: 40%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__text-content {
  flex: 1;
}

.page-gdpr__contact-section {
  text-align: center;
  background-color: #e9f7ef; /* Light green for contact section */
  border: 1px solid #28a745;
}

.page-gdpr__contact-list {
  list-style-type: none;
  padding: 0;
  margin: 25px 0;
}

.page-gdpr__contact-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-gdpr__cta-button--primary {
  background-color: #007bff;
  color: #ffffff;
}

.page-gdpr__cta-button--primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-gdpr__cta-button--secondary {
  background-color: #6c757d;
  color: #ffffff;
}

.page-gdpr__cta-button--secondary:hover {
  background-color: #5a6268;
  transform: translateY(-2px);
}

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

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

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

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }

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

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

  .page-gdpr__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__content-area {
    padding: 40px 15px;
  }

  .page-gdpr__section {
    padding: 20px;
  }

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

  .page-gdpr__image-text-layout {
    flex-direction: column;
    gap: 20px;
  }

  .page-gdpr__image-text-layout--reverse {
    flex-direction: column;
  }

  .page-gdpr__content-image {
    max-width: 100%;
    flex: none;
    height: auto; /* Ensure image scales correctly */
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Mobile content area image constraint */
  .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 {
    width: 100%;
    padding: 10px 15px;
  }

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

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

  .page-gdpr__cta-button {
    width: 100%;
    padding: 12px 20px;
  }
}