/* style/gdpr.css */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #FFD700, #8B0000);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFFFFF;
  font-weight: bold;
}

.page-gdpr__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

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

.page-gdpr__button--primary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gdpr__button--primary:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
}

.page-gdpr__section-heading {
  font-size: 2em;
  color: #8B0000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-gdpr__content-section {
  padding: 40px 0;
  background-color: #fff;
}

.page-gdpr__text-block {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.page-gdpr__text-block p, .page-gdpr__text-block ul {
  flex: 1;
  min-width: 300px;
}

.page-gdpr__text-block ul {
  list-style-type: disc;
  padding-left: 25px;
}

.page-gdpr__text-block ul li {
  margin-bottom: 10px;
}

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

.page-gdpr__image--right {
  order: 2;
  margin-left: 20px;
}

.page-gdpr__image--left {
  order: 1;
  margin-right: 20px;
}

.page-gdpr__text-block:nth-of-type(even) .page-gdpr__image--right {
  order: 1;
  margin-right: 20px;
  margin-left: 0;
}

.page-gdpr__text-block:nth-of-type(even) .page-gdpr__image--left {
  order: 2;
  margin-left: 20px;
  margin-right: 0;
}

.page-gdpr__link {
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__link:hover {
  text-decoration: underline;
}

.page-gdpr__cta-block {
  background-color: #FFD700;
  color: #8B0000;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
}

.page-gdpr__cta-block p {
  font-size: 1.3em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__button--secondary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gdpr__button--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
}

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

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

  .page-gdpr__section-heading {
    font-size: 1.5em;
  }

  .page-gdpr__text-block {
    flex-direction: column;
  }

  .page-gdpr__image,
  .page-gdpr__image--right,
  .page-gdpr__image--left {
    max-width: 100%;
    order: initial;
    margin: 0 0 20px 0 !important;
  }

  .page-gdpr__text-block p, .page-gdpr__text-block ul {
    min-width: unset;
    width: 100%;
  }
}

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

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

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

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