/* style/gdpr.css */

/* Color Variables */
:root {
  --page-gdpr-primary-color: #1A2E44; /* Dark blue */
  --page-gdpr-accent-color: #FFD700; /* Gold */
  --page-gdpr-text-on-dark: #FFFFFF; /* White for text on dark backgrounds */
  --page-gdpr-text-on-light: #333333; /* Dark grey for text on light backgrounds */
  --page-gdpr-background-light: #F8F8F8; /* Light background for main content */
  --page-gdpr-link-color: #FFD700; /* Gold for links */
  --page-gdpr-link-hover-color: #E6C200; /* Darker gold for link hover */
}

.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-gdpr-text-on-light);
  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), #3A5F7F);
  color: var(--page-gdpr-text-on-dark);
  padding: 80px 0;
  text-align: center;
}

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

.page-gdpr__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: var(--page-gdpr-accent-color);
  color: var(--page-gdpr-primary-color);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-gdpr__cta-button:hover {
  background-color: var(--page-gdpr-link-hover-color);
}

.page-gdpr__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

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

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

.page-gdpr__section-title {
  font-size: 2.2em;
  margin-bottom: 40px;
  text-align: center;
  color: inherit; /* Inherits color from parent section */
}

.page-gdpr__section--dark .page-gdpr__section-title {
  color: var(--page-gdpr-accent-color);
}

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

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

.page-gdpr__text-content {
  flex: 1;
}

.page-gdpr__text-content p {
  margin-bottom: 1em;
}

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

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

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

.page-gdpr__grid-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section--dark .page-gdpr__grid-item {
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.page-gdpr__item-title {
  font-size: 1.4em;
  color: var(--page-gdpr-accent-color);
  margin-bottom: 15px;
}

.page-gdpr__section-image {
  display: block;
  max-width: 80%;
  margin: 40px auto 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 30px;
}

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

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

.page-gdpr__section--dark .page-gdpr__list li strong {
  color: var(--page-gdpr-accent-color);
}

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

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
}

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

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

.page-gdpr__contact-link:hover {
  text-decoration: underline;
  color: var(--page-gdpr-link-hover-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__title {
    font-size: 2.2em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__content-flex {
    flex-direction: column;
  }
  .page-gdpr__content-flex--reverse {
    flex-direction: column;
  }
  .page-gdpr__section-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 1.1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__grid-item {
    padding: 20px;
  }
  .page-gdpr__item-title {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 1.5em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.3em;
  }
  .page-gdpr__list {
    margin-left: 15px;
  }
}