.page-gdpr {
  color: #ffffff; /* Body background is #0a0a0a (dark), so text must be light */
  background-color: #0a0a0a;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #1A1A2E, #0a0a0a);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-gdpr__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__hero-title {
  font-size: 44px;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 700px;
  margin: 0 auto;
}

.page-gdpr__content-section {
  padding: 60px 20px;
  background-color: #1A1A2E;
}

.page-gdpr__content-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #2a2a4a; /* Slightly lighter dark background for content area */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD700;
}

.page-gdpr__heading {
  font-size: 28px;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-gdpr__paragraph {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 16px;
}

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

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.5);
}

.page-gdpr__contact-info .page-gdpr__list-item {
  margin-left: 0;
  list-style-type: none;
}

.page-gdpr__contact-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: #ffe066;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 15px;
    line-height: 1.5;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-gdpr__hero-section {
    padding: 60px 15px;
  }

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

  .page-gdpr__hero-description {
    font-size: 16px;
  }

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

  .page-gdpr__content-container {
    padding: 25px;
    border-radius: 8px;
  }

  .page-gdpr__heading {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-gdpr__paragraph,
  .page-gdpr__list-item {
    font-size: 15px;
  }

  .page-gdpr__list {
    margin-left: 15px;
  }

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

  .page-gdpr__content-container,
  .page-gdpr__hero-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 28px;
  }

  .page-gdpr__heading {
    font-size: 22px;
  }
}