:root {
  --primary-color: #007bff;
  --secondary-color: #ffc107;
  --text-color-dark-bg: #ffffff;
  --text-color-light-bg: #333333;
  --card-bg-dark-theme: rgba(255, 255, 255, 0.1);
  --card-bg-light-theme: #ffffff;
  --border-color: #e0e0e0;
  --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-dark: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-gdpr {
  color: var(--text-color-dark-bg); /* Default text color for dark body background */
  background-color: #000; /* Body background is black from shared.css */
}

.page-gdpr__hero-section {
  padding: 120px 20px 80px; /* Adjusted padding-top for fixed header */
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
  color: var(--text-color-dark-bg);
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_security_pattern,blue_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.page-gdpr__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-color-dark-bg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

.page-gdpr__link-inline:hover {
  color: #fff;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--secondary-color);
  color: #000000; /* Ensure high contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background: #ffdb58; /* Slightly lighter secondary color */
  transform: translateY(-3px);
  box-shadow: var(--shadow-dark);
}

.page-gdpr__cta-button--secondary {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-color-dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.page-gdpr__cta-button--secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: var(--shadow-dark);
}

.page-gdpr__content-section {
  padding: 80px 20px;
}

.page-gdpr__dark-section {
  background-color: #0d0d0d;
  color: var(--text-color-dark-bg);
}

.page-gdpr__light-section {
  background-color: #1a1a1a;
  color: var(--text-color-dark-bg);
}

.page-gdpr__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: var(--secondary-color);
}

.page-gdpr p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #f0f0f0;
}

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

.page-gdpr__card {
  background: var(--card-bg-dark-theme);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-light);
  color: var(--text-color-dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-dark);
}

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

.page-gdpr__card p {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
}

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

.page-gdpr__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-gdpr__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2em;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: var(--shadow-light);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 100px !important; /* Mobile padding-top for fixed header */
    padding-bottom: 60px;
  }
  .page-gdpr__content-section {
    padding: 60px 15px;
  }
  .page-gdpr__main-title {
    font-size: 2.2em;
  }
  .page-gdpr__description,
  .page-gdpr p,
  .page-gdpr__list li,
  .page-gdpr__card p {
    font-size: 1em;
    line-height: 1.5;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__card-title {
    font-size: 1.3em;
  }
  .page-gdpr__grid-3-col {
    grid-template-columns: 1fr;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__cta-button,
  .page-gdpr__cta-button--secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-gdpr__list li {
    padding-left: 25px;
  }
  .page-gdpr__list li::before {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}