:root {
  --primary-color: #0A2463;
  --secondary-color: #E7BB41;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f8f9fa;
  --bg-dark: var(--dark-bg); /* Inherited from shared.css */
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Ensure consistency with body background */
  padding-top: 10px; /* Default for desktop, adjusted in media query */
}

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #06173d 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--text-light);
  padding-top: 100px; /* Ensure content is below fixed header */
}

.page-gdpr__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
}

.page-gdpr__main-title a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__main-title a:hover {
  color: #fff;
}

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

.page-gdpr__description a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-gdpr__description a:hover {
  color: var(--text-light);
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.page-gdpr__cta-button:hover {
  background: #ffc107;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button--secondary {
  background: none;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.page-gdpr__cta-button--secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  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: var(--secondary-color);
  border-radius: 2px;
}

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: var(--bg-dark); /* Consistent with body */
  color: var(--text-light);
}

.page-gdpr__content-section p {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-gdpr__content-section p a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-gdpr__content-section p a:hover {
  color: var(--text-light);
}

.page-gdpr__dark-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

.page-gdpr__image--full-width {
  width: 100%;
  border-radius: 0;
  margin-left: -20px;
  margin-right: -20px;
  max-width: calc(100% + 40px);
}

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

.page-gdpr__card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.page-gdpr__card p {
  font-size: 1em;
  margin-bottom: 0;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-gdpr__list li {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-light);
}

.page-gdpr__list li strong {
  color: var(--secondary-color);
  font-size: 1.1em;
  margin-right: 10px;
  flex-shrink: 0;
}

.page-gdpr__list li a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-gdpr__list li a:hover {
  color: var(--text-light);
}

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

.page-gdpr__feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.page-gdpr__feature-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-gdpr__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px var(--secondary-color));
}

.page-gdpr__feature-title {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-gdpr__contact-section {
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__cta-button--contact {
  background: var(--secondary-color);
  color: var(--primary-color);
  margin-top: 30px;
}

.page-gdpr__contact-note {
  margin-top: 30px;
  font-size: 1em;
  color: rgba(255, 255, 255, 0.8);
}

.page-gdpr__contact-note a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-gdpr__contact-note a:hover {
  color: var(--text-light);
}

.page-gdpr__commitment-section {
  padding: 60px 0 80px;
  text-align: center;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-gdpr__cta-button--primary-large {
  padding: 18px 45px;
  font-size: 1.3em;
  background: var(--secondary-color);
  color: var(--primary-color);
  margin-top: 40px;
  border-radius: 10px;
}

.page-gdpr__cta-button--primary-large:hover {
  background: #ffc107;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__description {
    font-size: 1.1em;
  }
  .page-gdpr__card-title {
    font-size: 1.3em;
  }
  .page-gdpr__feature-title {
    font-size: 1.2em;
  }
  .page-gdpr__image--full-width {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}

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

  .page-gdpr__hero-section {
    padding: 60px 0;
    padding-top: 80px; /* Adjusted for mobile header */
  }

  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-gdpr__description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

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

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

  .page-gdpr__content-section {
    padding: 40px 0;
  }

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

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

  .page-gdpr__card,
  .page-gdpr__feature-item {
    padding: 20px;
  }

  .page-gdpr__card-title,
  .page-gdpr__feature-title {
    font-size: 1.2em;
  }

  .page-gdpr__list li {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  .page-gdpr__list li strong {
    font-size: 1em;
  }

  .page-gdpr__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .page-gdpr__image {
    margin: 30px auto;
  }

  .page-gdpr__image--full-width {
    margin-left: 0;
    margin-right: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__hero-section {
    padding-top: 70px;
  }
}