/* style/gdpr.css */

/* Variables for consistency */
:root {
  --page-gdpr-primary-color: #FF4500; /* Vibrant Orange */
  --page-gdpr-secondary-color: #1E90FF; /* Deep Sky Blue */
  --page-gdpr-text-dark: #333;
  --page-gdpr-text-light: #fff;
  --page-gdpr-background-light: #f9f9f9;
  --page-gdpr-background-dark: #2c2c2c;
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-gdpr-text-dark);
  background-color: var(--page-gdpr-background-light);
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, var(--page-gdpr-primary-color), var(--page-gdpr-secondary-color));
  color: var(--page-gdpr-text-light);
  padding: 80px 0;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: var(--page-gdpr-text-light);
  font-weight: bold;
}

.page-gdpr__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__section--alt {
  background-color: var(--page-gdpr-background-dark);
  color: var(--page-gdpr-text-light);
}

.page-gdpr__section--alt .page-gdpr__heading {
  color: var(--page-gdpr-text-light);
}

.page-gdpr__heading {
  font-size: 2em;
  color: var(--page-gdpr-primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-gdpr__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__content-block {
  flex: 1;
}

.page-gdpr__image-wrapper {
  flex: 1;
  text-align: center;
}

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

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 0;
}

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

.page-gdpr__list strong {
  color: var(--page-gdpr-primary-color);
}

.page-gdpr__section--alt .page-gdpr__list strong {
  color: var(--page-gdpr-secondary-color);
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.page-gdpr__btn--primary {
  background-color: var(--page-gdpr-primary-color);
  color: var(--page-gdpr-text-light);
  border: 2px solid var(--page-gdpr-primary-color);
}

.page-gdpr__btn--primary:hover {
  background-color: #e63900; /* Slightly darker orange */
  transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
  background-color: var(--page-gdpr-secondary-color);
  color: var(--page-gdpr-text-light);
  border: 2px solid var(--page-gdpr-secondary-color);
}

.page-gdpr__btn--secondary:hover {
  background-color: #1a7fe6; /* Slightly darker blue */
  transform: translateY(-2px);
}

.page-gdpr__contact-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--page-gdpr-background-light);
}

.page-gdpr__contact-section .page-gdpr__heading {
  color: var(--page-gdpr-secondary-color);
}

.page-gdpr__contact-link {
  color: var(--page-gdpr-secondary-color);
  text-decoration: none;
  font-weight: bold;
}

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

/* Links within content */
.page-gdpr__section a {
  color: var(--page-gdpr-primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__section--alt a {
  color: var(--page-gdpr-secondary-color);
}

.page-gdpr__section a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__title {
    font-size: 2.2em;
  }
  .page-gdpr__heading {
    font-size: 1.8em;
  }
  .page-gdpr__content-grid {
    flex-direction: column;
  }
  .page-gdpr__content-grid--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__heading {
    font-size: 1.5em;
  }
  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}