.page-gdpr {
  color: #f0f0f0; /* Light text for potential darker backgrounds, adjust if shared.css has light body background */
  background-color: #0A2E36; /* Using main brand color as background for the page content */
  min-height: 100vh;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

@media (prefers-color-scheme: light) {
  .page-gdpr {
    color: #333333; /* Dark text for light mode */
    background-color: #ffffff; /* White background for light mode */
  }
  .page-gdpr__hero-section,
  .page-gdpr__section {
    background-color: #f8f8f8; /* Slightly off-white for sections in light mode */
  }
  .page-gdpr__inline-link {
    color: #007bff;
  }
  .page-gdpr__cta-button {
    color: #ffffff;
    background-color: #FFD700;
  }
  .page-gdpr__cta-button--secondary {
    color: #0A2E36;
    background-color: transparent;
    border: 2px solid #0A2E36;
  }
  .page-gdpr__cta-button--secondary:hover {
    background-color: #0A2E36;
    color: #FFD700;
  }
}

.page-gdpr__hero-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #0A2E36; /* Dark background for hero */
  color: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-container {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-gdpr__main-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-gdpr__intro-text {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700;
  color: #0A2E36;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-gdpr__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-top: 20px;
}

.page-gdpr__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A2E36;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #0A2E36;
}

.page-gdpr__section {
  margin-bottom: 60px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for sections */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
}

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

.page-gdpr__list-item {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  color: #e0e0e0;
}

.page-gdpr__list-item::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-gdpr__inline-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__inline-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.page-gdpr__policy-links .page-gdpr__list-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 280px;
  background-color: rgba(255, 215, 0, 0.1);
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-gdpr__policy-links .page-gdpr__list-item:hover {
  background-color: rgba(255, 215, 0, 0.2);
}

.page-gdpr__policy-links .page-gdpr__list-item::before {
  content: ''; /* Remove checkmark for policy links */
}

.page-gdpr__call-to-action {
  text-align: center;
  margin-top: 80px;
  padding: 50px;
  background-color: #FFD700;
  color: #0A2E36;
}

.page-gdpr__call-to-action .page-gdpr__section-title {
  color: #0A2E36;
  border-bottom-color: rgba(10, 46, 54, 0.3);
}

.page-gdpr__call-to-action .page-gdpr__paragraph {
  color: #0A2E36;
}

.page-gdpr__call-to-action .page-gdpr__cta-button {
  background-color: #0A2E36;
  color: #FFD700;
}

.page-gdpr__call-to-action .page-gdpr__cta-button:hover {
  background-color: #1a4d5c;
  color: #FFD700;
}

.page-gdpr__last-updated {
  text-align: center;
  padding: 30px 20px;
  background-color: #0A2E36;
  color: #888;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__paragraph,
  .page-gdpr__list-item {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }
  .page-gdpr__main-title {
    font-size: 2.2em;
  }
  .page-gdpr__intro-text {
    font-size: 1em;
  }
  .page-gdpr__content-area {
    padding: 30px 15px;
  }
  .page-gdpr__section {
    padding: 25px;
    margin-bottom: 40px;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__policy-links .page-gdpr__list-item {
    flex: 1 1 100%;
    min-width: unset;
  }
  /* Mobile content image constraint */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.4em;
  }
  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 90px); /* Adjust for smaller mobile headers */
  }
  .page-gdpr__cta-button {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-gdpr__cta-button--secondary {
    margin-top: 0;
  }
  .page-gdpr__call-to-action .page-gdpr__cta-button {
    width: 100%;
  }
}