.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F0F0F0; /* Light text for dark backgrounds */
  background-color: #0A2342; /* Main background color */
}

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3C6B 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue_gold,subtle]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-gdpr__title {
  font-size: 3.5em;
  color: #E6B325;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.page-gdpr__subtitle {
  font-size: 1.4em;
  color: #D0D0D0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__btn {
  display: inline-block;
  background-color: #E6B325;
  color: #0A2342;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn:hover {
  background-color: #F0C44C;
  transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
  background-color: #0A2342;
  color: #E6B325;
  border: 2px solid #E6B325;
}

.page-gdpr__btn--secondary:hover {
  background-color: #1A3C6B;
  color: #F0C44C;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(230, 179, 37, 0.2);
}

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

.page-gdpr__intro {
  background-color: #1A3C6B;
}

.page-gdpr__rights {
  background-color: #0A2342;
}

.page-gdpr__data-handling {
  background-color: #1A3C6B;
}

.page-gdpr__security {
  background-color: #0A2342;
}

.page-gdpr__contact {
  background-color: #1A3C6B;
  text-align: center;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #E6B325;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

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

.page-gdpr__text-content {
  flex: 1;
  font-size: 1.1em;
  color: #D0D0D0;
}

.page-gdpr__text-content p {
  margin-bottom: 15px;
}

.page-gdpr__text-content ul {
  list-style: disc inside;
  padding-left: 20px;
  margin-top: 15px;
}

.page-gdpr__text-content li {
  margin-bottom: 8px;
}

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

.page-gdpr__image-container--full-width {
  flex: none;
  width: 100%;
  margin-top: 30px;
}

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

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

.page-gdpr__right-item {
  background-color: #1A3C6B;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-gdpr__right-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__right-item h3 {
  color: #E6B325;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-gdpr__right-item p {
  color: #D0D0D0;
  font-size: 1em;
}

.page-gdpr__contact p {
  font-size: 1.1em;
  color: #D0D0D0;
  margin-bottom: 10px;
}

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

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

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

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

  .page-gdpr__section-title {
    font-size: 2em;
  }

  .page-gdpr__content-wrapper {
    flex-direction: column;
  }

  .page-gdpr__content-wrapper--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 80px 15px;
  }

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

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

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

  .page-gdpr__section-title {
    font-size: 1.8em;
  }

  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

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

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

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

  .page-gdpr__text-content, .page-gdpr__right-item p {
    font-size: 0.95em;
  }

  .page-gdpr__right-item h3 {
    font-size: 1.3em;
  }
}