.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1A2E47;
  background-color: #f8f8f8;
}

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

.page-gdpr__hero {
  background-color: #1A2E47;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.page-gdpr__hero > *:not(.page-gdpr__hero-image) {
  position: relative;
  z-index: 1;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.page-gdpr__section:nth-of-type(even) {
  background-color: #f0f0f0;
  flex-direction: row-reverse;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #1A2E47;
  margin-bottom: 25px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-gdpr__section p {
  margin-bottom: 15px;
  color: #333;
}

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

.page-gdpr__list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: #333;
}

.page-gdpr__icon {
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

.page-gdpr__highlight {
  color: #1A2E47;
  font-weight: bold;
}

.page-gdpr__link {
  color: #1A2E47;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #FFD700;
}

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

.page-gdpr__btn--primary {
  background-color: #FFD700;
  color: #1A2E47;
}

.page-gdpr__btn--primary:hover {
  background-color: #e5c100;
}

.page-gdpr__btn--secondary {
  background-color: #1A2E47;
  color: #fff;
  border: 2px solid #1A2E47;
}

.page-gdpr__btn--secondary:hover {
  background-color: #0d1e33;
  border-color: #0d1e33;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }

  .page-gdpr__hero-title {
    font-size: 2.5em;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
  }

  .page-gdpr__section {
    flex-direction: column;
    text-align: center;
  }

  .page-gdpr__section:nth-of-type(even) {
    flex-direction: column;
  }

  .page-gdpr__section-image {
    width: 80%;
    margin-top: 30px;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
    padding-left: 0;
    border-left: none;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
  }

  .page-gdpr__list li {
    padding-left: 0;
  }

  .page-gdpr__icon {
    position: static;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }

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

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