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

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

.page-gdpr__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #FFD700, #000080);
  color: #fff;
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-gdpr__hero-section .page-gdpr__container {
  z-index: 1;
  position: relative;
}

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

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

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

.page-gdpr__section {
  padding: 60px 0;
  background-color: #fff;
}

.page-gdpr__section--alt-bg {
  background-color: #f0f2f5;
}

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

.page-gdpr__section p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #444;
}

.page-gdpr__subsection-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: left;
}

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

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

.page-gdpr__list li strong {
  color: #000080;
}

.page-gdpr__link {
  color: #000080;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

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

.page-gdpr__btn--primary {
  background-color: #FFD700;
  color: #000080;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

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

.page-gdpr__btn--secondary {
  background-color: #000080;
  color: #FFD700;
  border: 2px solid #000080;
}

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

.page-gdpr__btn--tertiary {
  background-color: transparent;
  color: #000080;
  border: 2px solid #000080;
}

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

.page-gdpr__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__content-block {
  flex: 1;
  min-width: 300px;
}

.page-gdpr__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-gdpr__image--contact {
  max-width: 80%;
  margin: 0 auto;
  display: block;
}

.page-gdpr__contact-section {
  background-color: #FFD700;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__contact-section .page-gdpr__container {
  z-index: 1;
  position: relative;
  color: #000080;
}

.page-gdpr__contact-section .page-gdpr__section-title {
  color: #000080;
}

.page-gdpr__contact-section p {
  color: #000080;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

.page-gdpr__contact-section .page-gdpr__link {
  color: #000080;
}

.page-gdpr__contact-section .page-gdpr__link:hover {
  color: #000066;
}

.page-gdpr__disclaimer {
  padding: 30px 0;
  background-color: #e0e0e0;
  text-align: center;
  font-size: 0.9em;
  color: #666;
}

.page-gdpr__disclaimer-text {
  margin: 0;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__subsection-title {
    font-size: 1.5em;
  }
  .page-gdpr__container--flex {
    flex-direction: column;
    text-align: center;
  }
  .page-gdpr__container--reverse {
    flex-direction: column;
  }
  .page-gdpr__content-block, .page-gdpr__image-block {
    width: 100%;
  }
  .page-gdpr__image--contact {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__subsection-title {
    font-size: 1.3em;
  }
  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__list {
    margin-left: 15px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__subsection-title {
    font-size: 1.2em;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__btn {
    width: 100%;
    max-width: 280px;
  }
  .page-gdpr__cta-buttons {
    align-items: center;
  }
}