.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray text for dark background, WCAG AA contrast with #0F1D3D (7.6:1) and #1A2B5B (7.0:1) */
  background-color: #0F1D3D; /* Darker background, slightly different from main #1A2B5B for contrast */
}

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

.page-gdpr-hero {
  background: linear-gradient(135deg, #1A2B5B, #0F1D3D);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF; /* White text, WCAG AA contrast with #1A2B5B (15.8:1) and #0F1D3D (18.6:1) */
}

.page-gdpr-hero-image-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.page-gdpr-hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
}

.page-gdpr-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for main title, WCAG AA contrast with #1A2B5B (6.8:1) and #0F1D3D (8.0:1) */
  position: relative;
  z-index: 1;
}

.page-gdpr-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-gdpr-highlight {
  color: #FFD700;
}

.page-gdpr-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2B5B; /* Dark blue text on gold, WCAG AA contrast (6.8:1) */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
}

.page-gdpr-btn:hover {
  background-color: #e5c100; /* Slightly darker gold on hover */
  color: #0F1D3D; /* Even darker blue on hover, WCAG AA contrast (8.0:1) */
}

.page-gdpr-btn-secondary {
  background-color: #1A2B5B;
  color: #FFD700; /* Gold text on dark blue, WCAG AA contrast (6.8:1) */
  border: 1px solid #FFD700;
}

.page-gdpr-btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2B5B; /* Dark blue text on gold, WCAG AA contrast (6.8:1) */
}

.page-gdpr-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-gdpr-commitment-section {
  background-color: #1A2B5B; /* Main dark blue for commitment section */
}

.page-gdpr-data-processing-section {
  background-color: #0F1D3D;
}

.page-gdpr-section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #C0C0C0; /* Light gray for body text, WCAG AA contrast with #0F1D3D (7.6:1) and #1A2B5B (7.0:1) */
}

.page-gdpr-bold {
  font-weight: bold;
  color: #FFFFFF; /* White for bold text, WCAG AA contrast with #0F1D3D (18.6:1) and #1A2B5B (15.8:1) */
}

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

.page-gdpr-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #C0C0C0; /* Light gray for list items, WCAG AA contrast with #0F1D3D (7.6:1) and #1A2B5B (7.0:1) */
}

.page-gdpr-list-item-title {
  font-weight: bold;
  color: #FFFFFF; /* White for list item titles, WCAG AA contrast with #0F1D3D (18.6:1) and #1A2B5B (15.8:1) */
}

.page-gdpr-contact-section {
  text-align: center;
  padding: 60px 0;
  background-color: #1A2B5B;
}

.page-gdpr-contact-info {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.page-gdpr-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.page-gdpr-content-wrapper-reverse {
  flex-direction: row-reverse;
}

.page-gdpr-text-content {
  flex: 1;
  min-width: 300px;
}

.page-gdpr-image-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

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

  .page-gdpr-subtitle {
    font-size: 1.2em;
  }

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

  .page-gdpr-content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-gdpr-content-wrapper-reverse {
    flex-direction: column;
  }

  .page-gdpr-list li {
    font-size: 1em;
  }

  .page-gdpr p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr-hero {
    padding: 60px 0 30px;
  }
  .page-gdpr-title {
    font-size: 2em;
  }

  .page-gdpr-subtitle {
    font-size: 1em;
  }

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

  .page-gdpr-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-gdpr-list li {
    padding-left: 25px;
    background-size: 16px;
  }
}