:root {
  --primary-color: #0A2463;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --body-bg-color: #121212; /* From shared.css */
  --card-bg-color: rgba(255, 255, 255, 0.08);
  --border-color: rgba(255, 255, 255, 0.15);
  --shadow-color: rgba(0, 0, 0, 0.5);
}

.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(--body-bg-color);
}

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

/* Fixed header spacing */
.page-gdpr__hero-section {
  padding-top: 120px; /* Desktop: Adjust based on actual header height */
  padding-bottom: 60px;
  background: var(--primary-color);
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.page-gdpr__hero-description {
  font-size: 1.1em;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  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 12px var(--shadow-color);
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-color);
}

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

.page-gdpr__cta-button--secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-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-color: var(--secondary-color);
  border-radius: 2px;
}

.page-gdpr__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--text-light);
}

.page-gdpr__intro-section,
.page-gdpr__rights-section,
.page-gdpr__request-process-section,
.page-gdpr__conclusion-section {
  padding: 80px 0;
  background-color: var(--body-bg-color);
}

.page-gdpr__principles-section,
.page-gdpr__security-measures-section,
.page-gdpr__contact-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-gdpr__principles-section .page-gdpr__section-title,
.page-gdpr__security-measures-section .page-gdpr__section-title,
.page-gdpr__contact-section .page-gdpr__section-title {
  color: var(--secondary-color);
}

.page-gdpr__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-gdpr__text-block {
  flex: 1;
  font-size: 1em;
}

.page-gdpr__text-block p {
  margin-bottom: 1em;
  color: var(--text-light);
}

.page-gdpr__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__image-block--center {
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px var(--shadow-color);
  display: block;
}

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

.page-gdpr__grid-item {
  background: var(--card-bg-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-gdpr__grid-item .page-gdpr__item-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-gdpr__grid-item p {
  color: var(--text-light);
}

.page-gdpr__security-list,
.page-gdpr__process-list,
.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-gdpr__security-list .page-gdpr__list-item,
.page-gdpr__process-list .page-gdpr__list-item,
.page-gdpr__contact-list .page-gdpr__list-item {
  background: var(--card-bg-color);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  font-size: 1em;
  color: var(--text-light);
}

.page-gdpr__security-list .page-gdpr__list-item strong,
.page-gdpr__process-list .page-gdpr__list-item strong,
.page-gdpr__contact-list .page-gdpr__list-item strong {
  color: var(--secondary-color);
}

.page-gdpr__process-list {
  counter-reset: process-step;
}

.page-gdpr__process-list .page-gdpr__list-item::before {
  counter-increment: process-step;
  content: counter(process-step) ". ";
  font-weight: bold;
  color: var(--secondary-color);
  font-size: 1.2em;
  margin-right: 10px;
}

.page-gdpr__contact-link {
  color: var(--secondary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: #e6c200;
}

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

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

  .page-gdpr__content-wrapper {
    flex-direction: column;
  }

  .page-gdpr__image-block {
    margin-top: 30px;
  }

  .page-gdpr__grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 100px !important; /* Mobile: Adjust based on actual mobile header height */
    padding-bottom: 40px;
  }

  .page-gdpr__container {
    padding: 0 15px;
  }

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

  .page-gdpr__hero-description {
    font-size: 1em;
  }

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

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

  .page-gdpr__intro-section,
  .page-gdpr__principles-section,
  .page-gdpr__rights-section,
  .page-gdpr__security-measures-section,
  .page-gdpr__request-process-section,
  .page-gdpr__contact-section,
  .page-gdpr__conclusion-section {
    padding: 50px 0;
  }

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

  .page-gdpr__section-intro {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-gdpr__text-block p {
    font-size: 0.95em;
  }

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

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

  .page-gdpr__grid-item .page-gdpr__item-title {
    font-size: 1.3em;
  }

  .page-gdpr__security-list .page-gdpr__list-item,
  .page-gdpr__process-list .page-gdpr__list-item,
  .page-gdpr__contact-list .page-gdpr__list-item {
    padding: 15px;
    font-size: 0.95em;
  }
}

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

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

  .page-gdpr__cta-button {
    padding: 10px 15px !important;
    font-size: 0.9em !important;
  }
}