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

.page-gdpr a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: #e6c200;
}

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #302a00 100%); /* Dark blue to a slightly lighter, gold-tinted dark */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  border: none;
}

.page-gdpr__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-gdpr__btn--primary:hover {
  background-color: #e6c200;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

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

.page-gdpr__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.page-gdpr__btn--large {
  padding: 15px 30px;
  font-size: 1.1em;
  margin: 10px;
}

.page-gdpr__content-section {
  padding: 60px 0;
}

.page-gdpr__section--alt {
  background-color: #1a2a40; /* Slightly lighter dark blue for contrast */
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-gdpr__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #c0c0c0;
  text-align: justify;
}

.page-gdpr__text-link {
  color: #FFD700;
  font-weight: bold;
}

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

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

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  color: #c0c0c0;
}

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

.page-gdpr__list strong {
  color: #FFD700;
}

.page-gdpr__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-gdpr__grid-item {
  text-align: left;
}

.page-gdpr__grid-item .page-gdpr__section-title {
  text-align: left;
  margin-left: 0;
}

.page-gdpr__grid-item .page-gdpr__section-title::after {
  left: 0;
  transform: translateX(0);
}

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

.page-gdpr__image--inline {
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
  max-width: 40%;
}

.page-gdpr__image--center {
  display: block;
  margin: 30px auto;
  max-width: 60%;
}

.page-gdpr__contact-section {
  padding: 60px 0;
  text-align: center;
}

.page-gdpr__contact-info {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #E0E0E0;
}

.page-gdpr__cta-section {
  background-color: #0A192F;
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
  border-top: 5px solid #FFD700;
}

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

.page-gdpr__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 3em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1.3em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__grid-item .page-gdpr__section-title {
    text-align: center;
  }
  .page-gdpr__grid-item .page-gdpr__section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .page-gdpr__image--inline {
    float: none;
    margin: 20px auto;
    max-width: 80%;
    display: block;
  }
  .page-gdpr__image--center {
    max-width: 80%;
  }
  .page-gdpr__cta-title {
    font-size: 2.5em;
  }
  .page-gdpr__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1.1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__text, .page-gdpr__list li, .page-gdpr__contact-info {
    font-size: 1em;
  }
  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-gdpr__btn--large {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__image--center {
    max-width: 90%;
  }
  .page-gdpr__cta-title {
    font-size: 2em;
  }
  .page-gdpr__cta-text {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__btn--large {
    display: block;
    margin: 10px auto;
  }
}