/* style/gdpr.css */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E2E8F0; /* Light text for dark background */
  background-color: #1A202C; /* Main background color */
}

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

.page-gdpr__hero {
  background-color: #1A202C;
  background-image: linear-gradient(135deg, #1A202C 0%, #303742 100%);
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-gdpr__title {
  font-size: 2.8em;
  color: #FFD700; /* Accent color for title */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-gdpr__subtitle {
  font-size: 1.2em;
  color: #CBD5E0; /* Slightly lighter text for subtitle */
  max-width: 700px;
  margin: 0 auto;
}

.page-gdpr__section {
  padding: 60px 0;
}

.page-gdpr__section--alt-bg {
  background-color: #2D3748; /* Slightly lighter dark background for contrast */
}

.page-gdpr__heading {
  font-size: 2em;
  color: #FFD700; /* Accent color for headings */
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__section p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #E2E8F0;
}

.page-gdpr__list,
.page-gdpr__ordered-list {
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E2E8F0;
}

.page-gdpr__list li,
.page-gdpr__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gdpr__list strong,
.page-gdpr__ordered-list strong {
  color: #FFD700;
}

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

.page-gdpr__contact-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__call-to-action {
  background-color: #FFD700; /* Accent background for CTA */
  padding: 60px 0;
  text-align: center;
  color: #1A202C; /* Dark text for light background */
}

.page-gdpr__heading--cta {
  color: #1A202C;
  margin-bottom: 20px;
}

.page-gdpr__call-to-action p {
  color: #1A202C;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-gdpr__call-to-action strong {
  color: #1A202C;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #1A202C;
  color: #FFD700;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 2px solid #1A202C;
}

.page-gdpr__button:hover {
  background-color: #303742;
  color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__heading {
    font-size: 1.6em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__call-to-action {
    padding: 40px 0;
  }
  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 1.6em;
  }
  .page-gdpr__subtitle {
    font-size: 0.9em;
  }
  .page-gdpr__heading {
    font-size: 1.4em;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
}