.page-gdpr {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by 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;
  min-height: 500px;
}

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

.page-gdpr__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
  background-color: rgba(0, 51, 102, 0.7); /* Dark blue with transparency */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__main-title {
  font-size: 3em;
  color: #FFCC00; /* Auxiliary color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color */
  color: #003366; /* Main color for text */
  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__cta-button:hover {
  background-color: #e6b800; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #003366; /* Main color */
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #FFCC00;
  padding-bottom: 15px;
}

.page-gdpr__sub-title {
  font-size: 2em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.page-gdpr__key-principles, .page-gdpr__your-rights, .page-gdpr__data-security, .page-gdpr__international-transfers, .page-gdpr__contact-info, .page-gdpr__call-to-action {
  margin-top: 50px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-gdpr__list-item {
  display: flex;
  align-items: flex-start;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-gdpr__list-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__list-icon {
  flex-shrink: 0;
  width: 100px;
  height: auto;
  margin-right: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-gdpr__list-content {
  flex-grow: 1;
}

.page-gdpr__list-title {
  font-size: 1.4em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
}

.page-gdpr__rights-item {
  background-color: #e6f0fa; /* Light blue tint */
  border-left: 5px solid #003366;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.page-gdpr__rights-title {
  font-size: 1.3em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__security-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px 0 30px;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

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

.page-gdpr__contact-link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-link:hover {
  text-decoration: underline;
  color: #FFCC00;
}

.page-gdpr__call-to-action {
  text-align: center;
  padding: 40px;
  background-color: #003366; /* Main color */
  color: #ffffff;
  border-radius: 8px;
  margin-top: 60px;
}

.page-gdpr__cta-button--bottom {
  margin: 15px 10px;
  background-color: #FFCC00;
  color: #003366;
}

.page-gdpr__cta-button--bottom:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

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

  .page-gdpr__intro-text {
    font-size: 1em;
  }

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

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

  .page-gdpr__list {
    grid-template-columns: 1fr;
  }

  .page-gdpr__list-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-gdpr__list-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-gdpr__hero-content {
    padding: 20px;
  }

  /* Ensure images do not overflow on mobile */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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

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

  .page-gdpr__list-icon {
    width: 80px;
  }

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