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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A2463, #3A5B9C);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Luxury Gold for title */
  font-weight: bold;
}

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

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

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Tech Blue */
  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__content-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

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

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

.page-gdpr__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #495057;
}

.page-gdpr__text-content ul {
  list-style: none;
  padding-left: 0;
}

.page-gdpr__text-content ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #495057;
}

.page-gdpr__text-content ul li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

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

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

.page-gdpr__grid-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-gdpr__grid-item h3 {
  color: #0A2463;
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-gdpr__grid-item p {
  color: #6c757d;
}

.page-gdpr__icon {
  width: 60px;
  height: 60px;
  color: #FFD700; /* Use as a placeholder for SVG icons or tinting */
}

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

.page-gdpr__button {
  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;
  white-space: nowrap;
}

.page-gdpr__button--primary {
  background-color: #FFD700; /* Luxury Gold */
  color: #0A2463; /* Tech Blue */
  border: 2px solid #FFD700;
}

.page-gdpr__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-gdpr__button--secondary {
  background-color: #0A2463; /* Tech Blue */
  color: #FFD700; /* Luxury Gold */
  border: 2px solid #0A2463;
}

.page-gdpr__button--secondary:hover {
  background-color: #1a3a7c;
  border-color: #1a3a7c;
}

.page-gdpr__section--cta-bg {
  background-color: #0A2463;
  color: #FFFFFF;
  text-align: center;
}

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

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

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

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

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

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

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

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

  .page-gdpr__hero-description,
  .page-gdpr__text-content p,
  .page-gdpr__cta-description {
    font-size: 1em;
  }

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

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

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