.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background #121212 */
  background-color: transparent; /* Body background is handled by shared.css */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  min-height: 500px;
  overflow: hidden;
  color: #ffffff;
}

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

.page-gdpr__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 46, 78, 0.7); /* Primary color with transparency */
  z-index: -1;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-gdpr__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__section {
  padding: 80px 20px;
}

.page-gdpr__dark-bg {
  background-color: #1A2E4E;
  color: #ffffff;
}

.page-gdpr__light-bg {
  background-color: #f9f9f9;
  color: #333333;
}

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

.page-gdpr__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from section (dark or light) */
}

.page-gdpr__dark-bg .page-gdpr__section-title {
  color: #FFD700;
}

.page-gdpr__light-bg .page-gdpr__section-title {
  color: #1A2E4E;
}

.page-gdpr__subsection-title {
  font-size: 28px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  color: inherit;
}

.page-gdpr__dark-bg .page-gdpr__subsection-title {
  color: #FFD700;
}

.page-gdpr__light-bg .page-gdpr__subsection-title {
  color: #1A2E4E;
}

.page-gdpr__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.page-gdpr__list-item {
  font-size: 18px;
  margin-bottom: 10px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-gdpr__btn-primary {
  background: #FFD700; /* Auxiliary color */
  color: #1A2E4E; /* Primary color for text */
}

.page-gdpr__btn-primary:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn--center {
  display: block;
  margin: 40px auto 0 auto;
  text-align: center;
  max-width: 300px; /* Limit button width for better appearance */
}

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

.page-gdpr__grid-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  color: #333333;
}

.page-gdpr__grid-item .page-gdpr__subsection-title {
  color: #1A2E4E;
  font-size: 22px;
  margin-top: 0;
}

.page-gdpr__grid-item .page-gdpr__text-block {
  font-size: 16px;
}

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

.page-gdpr__contact-item {
  font-size: 18px;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.page-gdpr__contact-item strong {
  color: #1A2E4E;
}

.page-gdpr__contact-item::before {
  content: '▶'; /* Simple arrow icon */
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
}

.page-gdpr__link {
  color: #1A2E4E;
  text-decoration: underline;
  font-weight: bold;
}

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

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

.page-gdpr__image--center {
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__image--margin-top {
  margin-top: 60px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 40px;
  }

  .page-gdpr__hero-description {
    font-size: 18px;
  }

  .page-gdpr__section-title {
    font-size: 30px;
  }

  .page-gdpr__subsection-title {
    font-size: 24px;
  }

  .page-gdpr__text-block, .page-gdpr__list-item, .page-gdpr__contact-item {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
  }

  .page-gdpr__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }

  .page-gdpr__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-gdpr__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__btn--center {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

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

  .page-gdpr__container {
    padding: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-gdpr__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .page-gdpr__subsection-title {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-gdpr__text-block, .page-gdpr__list-item, .page-gdpr__contact-item {
    font-size: 15px;
  }

  .page-gdpr__list {
    margin-left: 20px;
  }

  .page-gdpr__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__grid-item {
    padding: 20px;
  }

  .page-gdpr__grid-item .page-gdpr__subsection-title {
    font-size: 18px;
  }

  .page-gdpr__image {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__image--margin-top {
    margin-top: 40px;
  }

  .page-gdpr__contact-item {
    padding-left: 25px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 28px;
  }
  .page-gdpr__hero-description {
    font-size: 15px;
  }
  .page-gdpr__section-title {
    font-size: 24px;
  }
}