.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-gdpr__hero {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold accent for title */
}

.page-gdpr__subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
}

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

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

.page-gdpr__heading {
  font-size: 2em;
  color: #003366; /* Deep blue for headings */
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__content-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-gdpr__text-block {
  flex: 2;
  min-width: 300px;
}

.page-gdpr__image-block {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

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

.page-gdpr__image--center {
  display: block;
  margin: 30px auto;
  max-width: 700px;
}

.page-gdpr__list,
.page-gdpr__numbered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #444;
}

.page-gdpr__numbered-list {
  list-style-type: decimal;
}

.page-gdpr__list li,
.page-gdpr__numbered-list li {
  margin-bottom: 10px;
}

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

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

.page-gdpr__image-caption {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__caption-text {
  font-style: italic;
  color: #666;
  margin-top: 15px;
}

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

.page-gdpr__button {
  display: inline-block;
  background-color: #FFD700; /* Gold for primary button */
  color: #003366;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
  border: 2px solid transparent;
}

.page-gdpr__button:hover {
  background-color: #e6c200;
  color: #001a33;
}

.page-gdpr__button--secondary {
  background-color: #003366; /* Deep blue for secondary button */
  color: #FFD700;
  border-color: #FFD700;
}

.page-gdpr__button--secondary:hover {
  background-color: #001a33;
  color: #FFD700;
  border-color: #FFD700;
}

.page-gdpr__image--bottom {
  margin-top: 50px;
  max-width: 800px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 20px;
  }

  .page-gdpr__title {
    font-size: 2.2em;
  }

  .page-gdpr__subtitle {
    font-size: 1em;
  }

  .page-gdpr__heading {
    font-size: 1.8em;
  }

  .page-gdpr__content-flex {
    flex-direction: column;
  }

  .page-gdpr__text-block, .page-gdpr__image-block {
    min-width: unset;
    width: 100%;
  }

  .page-gdpr__button {
    width: calc(100% - 20px);
    box-sizing: border-box;
    margin: 10px 0;
  }
}

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

  .page-gdpr__heading {
    font-size: 1.5em;
  }

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