.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Inherit from shared.css, assumed dark */
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

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

.page-gdpr__hero-section {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color, #FFD700) 0%, var(--secondary-color, #8B0000) 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__main-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #ffffff;
  color: var(--secondary-color, #8B0000);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background: var(--secondary-color, #8B0000);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button--bottom {
  margin-top: 40px;
  background: var(--primary-color, #FFD700);
  color: #333333;
}

.page-gdpr__cta-button--bottom:hover {
  background: #ffffff;
  color: var(--primary-color, #FFD700);
}

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

.page-gdpr__section-title {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color, #FFD700);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-gdpr__content-section p {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-gdpr__dark-bg .page-gdpr__section-title,
.page-gdpr__dark-bg p,
.page-gdpr__dark-bg li {
  color: #ffffff; /* Ensures light text on brand dark background */
}

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

.page-gdpr__light-bg .page-gdpr__section-title {
  color: var(--secondary-color, #8B0000);
}

.page-gdpr__light-bg p,
.page-gdpr__light-bg li {
  color: #333333;
}

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

.page-gdpr__grid-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-gdpr__image {
  max-width: 100%;
  height: 250px; /* Recommended size for content images */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-gdpr__item-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color, #FFD700);
}

.page-gdpr__grid-item p {
  font-size: 16px;
  color: #f0f0f0;
}

.page-gdpr__list {
  list-style: disc inside;
  font-size: 17px;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-gdpr__list li {
  margin-bottom: 10px;
}

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

.page-gdpr__card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.page-gdpr__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color, #8B0000);
  text-align: center;
}

.page-gdpr__list-small {
  list-style: disc inside;
  font-size: 16px;
  margin-left: 15px;
  color: #333333;
}

.page-gdpr__list-small li {
  margin-bottom: 8px;
}

.page-gdpr__full-width-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__security-list li {
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: #ffffff;
}

.page-gdpr__list-icon {
  color: var(--primary-color, #FFD700);
  font-size: 24px;
  margin-right: 15px;
  line-height: 1;
}

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

.page-gdpr__sharing-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  text-align: center;
}

.page-gdpr__sharing-item .page-gdpr__item-title {
  color: var(--secondary-color, #8B0000);
}

.page-gdpr__sharing-item p {
  color: #333333;
}

.page-gdpr__contact-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--secondary-color, #8B0000) 0%, #a00000 100%);
  color: #ffffff;
}

.page-gdpr__contact-info p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-gdpr__contact-link {
  color: var(--primary-color, #FFD700);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-gdpr__final-note-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--dark-bg-1);
  color: #f0f0f0;
}

.page-gdpr__final-note {
  font-size: 18px;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 38px;
  }

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

  .page-gdpr__grid,
  .page-gdpr__card-grid,
  .page-gdpr__sharing-info {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-gdpr__hero-section {
    padding: 40px 0;
  }

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

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

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

  .page-gdpr__content-section {
    padding: 50px 0;
  }

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

  .page-gdpr__content-section p,
  .page-gdpr__list,
  .page-gdpr__list-small,
  .page-gdpr__security-list li,
  .page-gdpr__contact-info p,
  .page-gdpr__final-note {
    font-size: 15px;
  }

  .page-gdpr__grid,
  .page-gdpr__card-grid,
  .page-gdpr__sharing-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__grid-item,
  .page-gdpr__card,
  .page-gdpr__sharing-item {
    padding: 25px;
  }

  .page-gdpr__image {
    height: 200px;
  }

  .page-gdpr__item-title {
    font-size: 20px;
  }

  .page-gdpr__card-title {
    font-size: 22px;
  }

  .page-gdpr__full-width-image {
    max-height: 300px;
  }

  .page-gdpr__list-icon {
    font-size: 20px;
    margin-right: 10px;
  }

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

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

  .page-gdpr__section-title {
    font-size: 22px;
  }

  .page-gdpr__hero-section {
    padding: 30px 0;
  }

  .page-gdpr__description {
    font-size: 15px;
  }

  .page-gdpr__cta-button {
    font-size: 16px;
    padding: 10px 25px;
  }

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

  .page-gdpr__grid-item,
  .page-gdpr__card,
  .page-gdpr__sharing-item {
    padding: 20px;
  }

  .page-gdpr__item-title {
    font-size: 18px;
  }

  .page-gdpr__card-title {
    font-size: 20px;
  }

  .page-gdpr__list,
  .page-gdpr__list-small,
  .page-gdpr__security-list li,
  .page-gdpr__contact-info p,
  .page-gdpr__final-note {
    font-size: 14px;
  }
}