.page-gdpr {
  background-color: #0a0a0a; /* Body background from shared.css */
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  background-color: var(--primary-color, #0A2463);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-gdpr__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color, #E3B505);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__description {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  color: #f0f0f0;
}

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

.page-gdpr__cta-buttons--center {
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.page-gdpr__btn-primary {
  background-color: var(--secondary-color, #E3B505);
  color: #0A2463;
}

.page-gdpr__btn-primary:hover {
  background-color: #d1a604;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-secondary {
  background-color: var(--primary-color, #0A2463);
  color: #ffffff;
  border: 2px solid var(--secondary-color, #E3B505);
}

.page-gdpr__btn-secondary:hover {
  background-color: #081e4d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-gdpr__content-section,
.page-gdpr__principles-section,
.page-gdpr__rights-section,
.page-gdpr__protection-section,
.page-gdpr__cookies-section,
.page-gdpr__contact-section,
.page-gdpr__changes-section {
  padding: 60px 0;
}

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

.page-gdpr__dark-bg {
  background-color: var(--primary-color, #0A2463);
  color: #ffffff;
}

.page-gdpr__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: inherit;
}

.page-gdpr__section-title + p {
  margin-top: -20px;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-gdpr__principle-item,
.page-gdpr__protection-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gdpr__light-bg .page-gdpr__principle-item,
.page-gdpr__light-bg .page-gdpr__protection-item {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
}

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

.page-gdpr__light-bg .page-gdpr__principle-item:hover,
.page-gdpr__light-bg .page-gdpr__protection-item:hover {
  background-color: #f0f0f0;
}

.page-gdpr__principle-title,
.page-gdpr__protection-title,
.page-gdpr__rights-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color, #E3B505);
}

.page-gdpr__light-bg .page-gdpr__principle-title,
.page-gdpr__light-bg .page-gdpr__protection-title,
.page-gdpr__light-bg .page-gdpr__rights-title {
  color: var(--primary-color, #0A2463);
}

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

.page-gdpr__rights-item,
.page-gdpr__cookie-list li,
.page-gdpr__contact-list li {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-gdpr__light-bg .page-gdpr__rights-item,
.page-gdpr__light-bg .page-gdpr__cookie-list li,
.page-gdpr__light-bg .page-gdpr__contact-list li {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-gdpr__rights-item p,
.page-gdpr__cookie-list p,
.page-gdpr__contact-list p {
  margin-top: 10px;
  margin-bottom: 0;
}

.page-gdpr__link {
  color: var(--secondary-color, #E3B505);
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__light-bg .page-gdpr__link {
  color: var(--primary-color, #0A2463);
}

.page-gdpr__link:hover {
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.5;
  }

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

  .page-gdpr__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
    min-height: 300px;
  }

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

  .page-gdpr__description {
    font-size: 16px;
    margin-bottom: 20px;
  }

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

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

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

  .page-gdpr__section-title + p {
    font-size: 15px;
    margin-top: -15px;
  }

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

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

  .page-gdpr__principle-item,
  .page-gdpr__protection-item,
  .page-gdpr__rights-item,
  .page-gdpr__cookie-list li,
  .page-gdpr__contact-list li {
    padding: 20px;
  }

  .page-gdpr__principle-title,
  .page-gdpr__protection-title,
  .page-gdpr__rights-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-gdpr__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}