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

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

.page-gdpr__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  padding-bottom: 60px;
  text-align: center;
  background-color: #0A192F; /* Main brand color for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-gdpr__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for main title */
  line-height: 1.2;
}

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

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

.page-gdpr__content-section,
.page-gdpr__rights-section,
.page-gdpr__security-section,
.page-gdpr__contact-section {
  background-color: #f5f5f5; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
  padding: 60px 0;
}

.page-gdpr__compliance-section,
.page-gdpr__data-collection-section,
.page-gdpr__policy-section {
  background-color: #0A192F; /* Dark background for contrast */
  color: #ffffff; /* Light text for dark background */
  padding: 60px 0;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #FFD700; /* Gold accent for section titles on dark backgrounds */
}

.page-gdpr__section-title--gold {
  color: #FFD700;
}

.page-gdpr__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark bg */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff; /* Text color for cards on dark bg */
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-gdpr__content-section .page-gdpr__card,
.page-gdpr__rights-section .page-gdpr__card,
.page-gdpr__security-section .page-gdpr__card,
.page-gdpr__contact-section .page-gdpr__card {
  background-color: #ffffff; /* White background for cards on light bg */
  color: #333333; /* Dark text for cards on light bg */
  border: 1px solid #e0e0e0;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__item-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD700; /* Gold accent for item titles on dark bg */
}

.page-gdpr__content-section .page-gdpr__item-title,
.page-gdpr__rights-section .page-gdpr__item-title,
.page-gdpr__security-section .page-gdpr__item-title,
.page-gdpr__contact-section .page-gdpr__item-title {
  color: #0A192F; /* Navy Blue for item titles on light bg */
}

.page-gdpr__item-description,
.page-gdpr__list li {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark bg */
}

.page-gdpr__content-section .page-gdpr__item-description,
.page-gdpr__rights-section .page-gdpr__item-description,
.page-gdpr__security-section .page-gdpr__item-description,
.page-gdpr__contact-section .page-gdpr__item-description,
.page-gdpr__content-section .page-gdpr__list li,
.page-gdpr__rights-section .page-gdpr__list li,
.page-gdpr__security-section .page-gdpr__list li,
.page-gdpr__contact-section .page-gdpr__list li {
  color: #555555; /* Dark text for light bg */
}

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

.page-gdpr__rights-item {
  background-color: #ffffff; /* White background for rights items */
  color: #333333; /* Dark text for rights items */
  padding: 25px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #0A192F; /* Accent border */
}

.page-gdpr__rights-item p {
  margin-bottom: 0;
  color: #555555;
}

.page-gdpr__contact-info {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #333333; /* Dark text for light background */
}

.page-gdpr__contact-info p {
  margin-bottom: 10px;
}

.page-gdpr__contact-link,
.page-gdpr__link {
  color: #0A192F; /* Main brand color for links on light bg */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover,
.page-gdpr__link:hover {
  color: #FFD700; /* Gold accent on hover */
  text-decoration: underline;
}

.page-gdpr__cta-buttons {
  text-align: center;
  margin-top: 50px;
}

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold accent for primary button */
  color: #0A192F; /* Dark text for gold button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary:hover {
  background: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-gdpr__container {
    padding: 20px 15px;
  }

  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }

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

  .page-gdpr__description {
    font-size: 1em;
  }

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

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

  .page-gdpr__compliance-grid,
  .page-gdpr__data-grid,
  .page-gdpr__security-grid,
  .page-gdpr__policy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__item-title {
    font-size: 1.2em;
  }

  .page-gdpr__rights-item {
    padding: 20px 25px;
    border-left-width: 3px;
  }

  .page-gdpr__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px !important;
    font-size: 1em !important;
  }

  /* Ensure all images are responsive */
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  /* Ensure containers with images/buttons are responsive */
  .page-gdpr__hero-section,
  .page-gdpr__content-section,
  .page-gdpr__compliance-section,
  .page-gdpr__rights-section,
  .page-gdpr__data-collection-section,
  .page-gdpr__security-section,
  .page-gdpr__policy-section,
  .page-gdpr__contact-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-gdpr__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}