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

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

.page-gdpr-hero {
  background: linear-gradient(135deg, #FFD700, #1E90FF);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr-hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff; /* Ensure high contrast */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr-hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr-hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-gdpr-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-gdpr-btn-primary {
  background-color: #FFD700; /* Gold */
  color: #1E90FF; /* Blue for contrast */
  border: 2px solid #FFD700;
}

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

.page-gdpr-btn-secondary {
  background-color: #1E90FF; /* Blue */
  color: #ffffff;
  border: 2px solid #1E90FF;
}

.page-gdpr-btn-secondary:hover {
  background-color: #1565b3;
  transform: translateY(-2px);
}

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

.page-gdpr-bg-alt {
  background-color: #eaf2f8; /* Light blue tint for contrast */
}

.page-gdpr-section-title {
  font-size: 2em;
  color: #1E90FF; /* Blue for headings */
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr-section-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr p {
  margin-bottom: 15px;
  font-size: 1.1em;
  text-align: justify;
}

.page-gdpr-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

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

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

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

.page-gdpr-content-block {
  flex: 1;
}

.page-gdpr-image-block {
  flex: 1;
  text-align: center;
}

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

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

.page-gdpr-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-gdpr-card:hover {
  transform: translateY(-5px);
}

.page-gdpr-card-title {
  font-size: 1.4em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
}

.page-gdpr-text-center {
  text-align: center;
  margin-top: 30px;
}

.page-gdpr-contact-btn {
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr-hero-title {
    font-size: 2.2em;
  }
  .page-gdpr-section-title {
    font-size: 1.8em;
  }
  .page-gdpr-flex-row {
    flex-direction: column;
  }
  .page-gdpr-flex-reverse {
    flex-direction: column;
  }
  .page-gdpr-hero-actions {
    flex-direction: column;
  }
  .page-gdpr-btn {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-gdpr-hero {
    padding: 60px 0;
  }
  .page-gdpr-hero-title {
    font-size: 1.8em;
  }
  .page-gdpr-hero-description {
    font-size: 1em;
  }
  .page-gdpr-section {
    padding: 40px 0;
  }
  .page-gdpr-section-title {
    font-size: 1.5em;
  }
  .page-gdpr-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-gdpr-hero-title {
    font-size: 1.5em;
  }
  .page-gdpr-hero-actions {
    gap: 10px;
  }
  .page-gdpr-btn {
    width: 90%;
    padding: 10px 20px;
  }
  .page-gdpr-list {
    margin-left: 15px;
  }
  .page-gdpr-list li, .page-gdpr p {
    font-size: 0.95em;
  }
}