/* style/gdpr.css */

/* Variables for colors */
:root {
  --page-gdpr-primary-color: #FFD700; /* Gold */
  --page-gdpr-secondary-color: #8B0000; /* Dark Red */
  --page-gdpr-text-dark: #333333;
  --page-gdpr-text-light: #ffffff;
  --page-gdpr-background-light: #f9f9f9;
  --page-gdpr-background-alt: #eeeeee;
}

.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-color: var(--page-gdpr-secondary-color);
  color: var(--page-gdpr-text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: var(--page-gdpr-primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: var(--page-gdpr-text-light);
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

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

.page-gdpr__heading {
  font-size: 2.2em;
  color: var(--page-gdpr-secondary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.page-gdpr__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-gdpr-primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__keyword {
  font-weight: bold;
  color: var(--page-gdpr-secondary-color);
}

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

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

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

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

.page-gdpr__contact-info {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 25px;
}

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

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

.page-gdpr__button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 30px;
  background-color: var(--page-gdpr-primary-color);
  color: var(--page-gdpr-secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid var(--page-gdpr-primary-color);
}

.page-gdpr__button:hover {
  background-color: var(--page-gdpr-secondary-color);
  color: var(--page-gdpr-primary-color);
  border-color: var(--page-gdpr-secondary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2.2em;
  }

  .page-gdpr__subtitle {
    font-size: 1.2em;
  }

  .page-gdpr__heading {
    font-size: 1.8em;
  }

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

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

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 1.8em;
  }

  .page-gdpr__subtitle {
    font-size: 1em;
  }

  .page-gdpr__heading {
    font-size: 1.5em;
  }

  .page-gdpr__button {
    width: 100%;
    text-align: center;
  }
}