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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #004AAD 0%, #0028ff 100%); /* Adjusted gradient for better contrast with gold */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__hero-image {
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: #fff;
}

.page-gdpr__section--alt {
  background-color: #e6f0fa; /* Lighter blue variant for alternating sections */
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #004AAD; /* Main brand color */
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #444;
}

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

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

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

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

.page-gdpr__image-wrapper {
  flex: 1;
  text-align: center;
}

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

.page-gdpr__image--centered {
  display: block;
  margin: 30px auto 0 auto;
  max-width: 800px;
}

.page-gdpr__image--small {
  max-width: 400px;
  margin-top: 20px;
}

.page-gdpr__rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__right-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__right-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.page-gdpr__right-item h3 {
  color: #004AAD;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-gdpr__right-item p {
  font-size: 0.95em;
  color: #555;
}

.page-gdpr__contact-info {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-gdpr__contact-info p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

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

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

.page-gdpr__contact-list a {
  color: #004AAD;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-list a:hover {
  text-decoration: underline;
  color: #0028ff;
}

.page-gdpr__cta-section {
  background-color: #004AAD; /* Main brand blue */
  color: #fff;
  text-align: center;
  padding: 70px 0;
}

.page-gdpr__cta-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 25px;
}

.page-gdpr__cta-section p {
  max-width: 700px;
  margin: 0 auto 35px auto;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary gold */
  color: #004AAD; /* Text color for contrast */
  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;
  border: none;
  cursor: pointer;
}

.page-gdpr__button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-gdpr__copyright {
  background-color: #0028ff; /* Darker blue for footer-like section */
  color: #f0f0f0;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9em;
}

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

  .page-gdpr__subtitle,
  .page-gdpr p,
  .page-gdpr__list li,
  .page-gdpr__contact-list li {
    font-size: 1em;
  }

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

  .page-gdpr__content-grid {
    flex-direction: column;
    text-align: center;
  }

  .page-gdpr__image-wrapper {
    order: -1; /* Image appears above text on mobile */
    margin-bottom: 20px;
  }

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

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

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

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }

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

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

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

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

  .page-gdpr__right-item h3 {
    font-size: 1.3em;
  }
}