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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0056B3 0%, #003f80 100%); /* Darker blue for hero */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,security_pattern,subtle]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-gdpr__hero .page-gdpr__container {
  position: relative;
  z-index: 1;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
}

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

.page-gdpr__cta-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0056B3; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
}

.page-gdpr__cta-btn:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #003f80; /* Darker blue on hover */
  border-color: #0056B3;
}

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

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #0056B3; /* Dark blue for section titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

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

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

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

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

.page-gdpr__list strong {
  color: #0056B3;
}

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

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  width: 40%; /* Adjust as needed for layout */
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  width: 40%; /* Adjust as needed for layout */
}

.page-gdpr__section::after {
  content: '';
  display: table;
  clear: both;
}

.page-gdpr__link {
  color: #0056B3;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-gdpr__cta-final {
  background-color: #003f80;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-gdpr__cta-final .page-gdpr__section-title {
  color: #FFD700;
}

.page-gdpr__cta-final .page-gdpr__section-title::after {
  background-color: #ffffff;
}

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

.page-gdpr__cta-btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

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

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

  .page-gdpr__hero,
  .page-gdpr__cta-final {
    padding: 60px 0;
  }

  .page-gdpr__image--left,
  .page-gdpr__image--right {
    float: none;
    margin: 20px auto;
    width: 90%;
  }
}

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

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

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

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

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

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