/* style/gdpr.css */
.page-gdpr {
  font-family: Arial, sans-serif;
  color: #E0E0E0; /* Light text for dark backgrounds */
  background-color: #0F091C; /* Darker variant of main color for overall background */
  line-height: 1.6;
}

.page-gdpr__hero {
  background: linear-gradient(135deg, #1A0D3B, #0F091C);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 1.3em;
  color: #D0D0D0;
  margin-bottom: 30px;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 600px;
  opacity: 0.8;
  z-index: 0;
}

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

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #1A0D3B; /* Main dark background for sections */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section--dark {
  background-color: #0F091C; /* Slightly darker for alternating sections */
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 15px;
}

.page-gdpr__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

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

.page-gdpr__list li {
  background-color: #2F1E4F; /* Slightly lighter background for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.05em;
  color: #F0F0F0;
}

.page-gdpr__list-item-title {
  color: #FFD700; /* Gold for list item titles */
}

.page-gdpr__image-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__section--cta {
  background: linear-gradient(90deg, #1A0D3B, #0F091C);
  text-align: center;
  padding: 80px 20px;
  border-radius: 0;
  margin-bottom: 0;
}

.page-gdpr__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-gdpr__cta-description {
  font-size: 1.2em;
  color: #D0D0D0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A0D3B; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-gdpr__button:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.highlight-keyword {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }

  .page-gdpr__hero-description {
    font-size: 1.1em;
  }

  .page-gdpr__section-title {
    font-size: 2em;
  }

  .page-gdpr__text,
  .page-gdpr__list li {
    font-size: 1em;
  }

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

  .page-gdpr__cta-description {
    font-size: 1.1em;
  }

  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 60px 15px;
  }

  .page-gdpr__hero-title {
    font-size: 2em;
  }

  .page-gdpr__hero-description {
    font-size: 0.95em;
  }

  .page-gdpr__section {
    padding: 40px 15px;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
  }

  .page-gdpr__cta-title {
    font-size: 1.8em;
  }

  .page-gdpr__cta-description {
    font-size: 1em;
  }

  .page-gdpr__button {
    padding: 10px 20px;
    font-size: 1em;
  }
}