.page-gdpr {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-gdpr__hero-section {
  background-color: #0A2342; /* Main brand color */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Auxiliary brand color */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary brand color */
  color: #0A2342;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-gdpr__hero-image {
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #0A2342; /* Main brand color */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-gdpr__sub-section-title {
  font-size: 1.8em;
  color: #0A2342;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #444444;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444444;
}

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

.page-gdpr__list-item strong {
  color: #0A2342;
}

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

.page-gdpr__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__link {
  color: #0A2342;
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr__link:hover {
  color: #FFD700;
}

.page-gdpr__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #0A2342; /* Main brand color */
  color: #FFD700; /* Auxiliary brand color */
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button:hover {
  background-color: #1a3a60;
  transform: translateY(-3px);
}

.page-gdpr__cta-link {
  color: #0A2342;
  font-size: 1.1em;
  text-decoration: none;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-gdpr__cta-link:hover {
  color: #FFD700;
  border-color: #0A2342;
}

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

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

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

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

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

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

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

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

  .page-gdpr__content-area {
    padding: 30px 15px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-gdpr__sub-section-title {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

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

  .page-gdpr__list {
    margin-left: 20px;
  }

  .page-gdpr__image {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .page-gdpr__cta-wrapper {
    margin-top: 40px;
  }

  .page-gdpr__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-gdpr__cta-link {
    font-size: 1em;
  }

  /* Mobile content image overflow prevention */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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

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

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

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

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