.page-gdpr {
  color: #ffffff; /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body background handled by shared.css */
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background: linear-gradient(135deg, #1A2B4C, #0E1B31);
  text-align: center;
  color: #ffffff;
}

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

.page-gdpr__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

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

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

.page-gdpr__cta-buttons--bottom {
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  white-space: nowrap;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-gdpr__btn-primary {
  background: #FFD700;
  color: #1A2B4C;
  border: 2px solid #FFD700;
}

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

.page-gdpr__btn-secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gdpr__btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: #0a0a0a; /* Ensure consistency with body background */
  color: #f0f0f0; /* Light text for dark background */
}

.page-gdpr__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
  padding-top: 20px;
  line-height: 1.3;
}

.page-gdpr__subsection-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.page-gdpr__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #e0e0e0;
}

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

.page-gdpr__list-item {
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-gdpr__list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__list-item strong {
  color: #FFD700;
}

.page-gdpr__list-title {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__list-item p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 0;
}

.page-gdpr__text-block a, .page-gdpr__list-item a {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.page-gdpr__text-block a:hover, .page-gdpr__list-item a:hover {
  color: #e6c200;
}

.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 40px;
  }
  .page-gdpr__description {
    font-size: 17px;
  }
  .page-gdpr__section-title {
    font-size: 32px;
  }
  .page-gdpr__subsection-title {
    font-size: 22px;
  }
  .page-gdpr__text-block {
    font-size: 16px;
  }
  .page-gdpr__list-title {
    font-size: 19px;
  }
  .page-gdpr__list-item p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-gdpr__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-gdpr__description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .page-gdpr__cta-button {
    width: 100%;
    padding: 12px 25px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-gdpr__content-section {
    padding: 40px 0;
  }
  .page-gdpr__container {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .page-gdpr__section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .page-gdpr__subsection-title {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-gdpr__text-block {
    font-size: 15px;
    line-height: 1.7;
  }
  .page-gdpr__list-item {
    padding: 15px 20px;
    margin-bottom: 10px;
  }
  .page-gdpr__list-title {
    font-size: 17px;
  }
  .page-gdpr__list-item p {
    font-size: 14px;
  }
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__cta-buttons--bottom {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 28px;
  }
  .page-gdpr__section-title {
    font-size: 24px;
  }
  .page-gdpr__description {
    font-size: 14px;
  }
}