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

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #333d4b 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #E0E0E0;
}

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

.page-gdpr__bg--light {
  background-color: #f8f8f8;
  color: #333;
}

.page-gdpr__bg--dark {
  background-color: #0A192F;
  color: #FFFFFF;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #0A192F;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__section-title--light {
  color: #FFD700;
}

.page-gdpr__text--light {
  color: #E0E0E0;
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-gdpr__text-content {
  flex: 2;
  min-width: 300px;
}

.page-gdpr__image-wrapper {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.page-gdpr__image-wrapper--center {
  margin-top: 40px;
}

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

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  padding: 0;
  color: #555;
}

.page-gdpr__list li {
  margin-bottom: 10px;
}

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

.page-gdpr__card {
  background-color: #1a2b47; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  background-color: #213a61;
}

.page-gdpr__card-title {
  color: #FFD700; /* Gold */
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-gdpr__card-text {
  color: #E0E0E0;
}

.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;
  margin-top: 20px;
  cursor: pointer;
}

.page-gdpr__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue */
  border: 2px solid #FFD700;
}

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

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

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

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

.page-gdpr__contact-section p {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.page-gdpr__link {
  color: #0A192F;
  text-decoration: underline;
  font-weight: bold;
}

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

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

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

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

  .page-gdpr__text-content, .page-gdpr__image-wrapper {
    min-width: unset;
    width: 100%;
  }

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

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

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

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

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