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

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

.page-gdpr-hero {
  background-color: #0A2463; /* Dark blue background */
  color: #FFFFFF; /* White text for contrast */
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(10, 36, 99, 0.9), rgba(255, 215, 0, 0.2)); /* Gradient overlay */
  z-index: 1;
}

.page-gdpr-hero .page-gdpr-container {
  position: relative;
  z-index: 2;
}

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

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

.page-gdpr-hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto 0;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr-section {
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

.page-gdpr-section:last-of-type {
  border-bottom: none;
}

.page-gdpr-section:nth-of-type(odd) {
  background-color: #f0f0f0;
}

.page-gdpr-heading {
  font-size: 2em;
  color: #0A2463; /* Dark blue for headings */
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

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

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

.page-gdpr-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 25px;
  color: #555;
}

.page-gdpr-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gdpr-list li strong {
  color: #0A2463;
}

.page-gdpr-illustration, .page-gdpr-graphic, .page-gdpr-diagram {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr-cta-section {
  background-color: #0A2463; /* Dark blue background */
  color: #FFFFFF; /* White text */
  padding: 50px 0;
  text-align: center;
}

.page-gdpr-cta-heading {
  font-size: 2.2em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 20px;
}

.page-gdpr-cta-text {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #E0E0E0;
}

.page-gdpr-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-gdpr-button-primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Dark blue text */
  border: 2px solid #FFD700;
}

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

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

.page-gdpr-button-secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

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

  .page-gdpr-subtitle {
    font-size: 1em;
  }

  .page-gdpr-heading {
    font-size: 1.8em;
  }

  .page-gdpr-text, .page-gdpr-list li {
    font-size: 0.95em;
  }

  .page-gdpr-cta-heading {
    font-size: 1.8em;
  }

  .page-gdpr-cta-text {
    font-size: 1em;
  }

  .page-gdpr-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr-button {
    width: 80%;
    margin: 0 auto;
  }

  .page-gdpr-illustration, .page-gdpr-graphic, .page-gdpr-diagram {
    max-width: 95%;
  }
}

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

  .page-gdpr-subtitle {
    font-size: 0.9em;
  }

  .page-gdpr-heading {
    font-size: 1.5em;
  }

  .page-gdpr-cta-heading {
    font-size: 1.6em;
  }

  .page-gdpr-button {
    padding: 10px 20px;
    font-size: 1em;
  }
}