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

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

.page-gdpr-center {
  text-align: center;
}

.page-gdpr-hero {
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(0, 51, 102, 0) 70%);
  animation: page-gdpr-rotate 20s linear infinite;
}

@keyframes page-gdpr-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-gdpr-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  position: relative;
  z-index: 1;
}

.page-gdpr-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-gdpr-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

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

.page-gdpr-btn-secondary {
  background-color: #003366;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gdpr-btn-secondary:hover {
  background-color: #004d99;
  color: #FFD700;
}

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

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

.page-gdpr-intro {
  background-color: #f9f9f9;
}

.page-gdpr-heading {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 30px;
  text-align: left;
}

.page-gdpr-intro .page-gdpr-heading {
  text-align: left;
}

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

@media (min-width: 768px) {
  .page-gdpr-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-gdpr-grid.page-gdpr-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-gdpr-grid .page-gdpr-image-wrapper:nth-child(2) {
    order: 1;
  }
  .page-gdpr-grid .page-gdpr-content:nth-child(1) {
    order: 2;
  }
}

.page-gdpr-image-wrapper {
  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-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.page-gdpr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr-card-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-gdpr-list {
  list-style: none;
  padding: 0;
}

.page-gdpr-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #555;
}

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

.page-gdpr-list li::before {
  content: '✔';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

.page-gdpr-contact {
  background-color: #003366;
  color: #fff;
  padding: 80px 0;
}

.page-gdpr-contact .page-gdpr-heading {
  color: #FFD700;
  margin-bottom: 20px;
}

.page-gdpr-contact p {
  font-size: 1.1em;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr-contact-info {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
}

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

.page-gdpr-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .page-gdpr-title {
    font-size: 2.5em;
  }
  .page-gdpr-subtitle {
    font-size: 1.1em;
  }
  .page-gdpr-heading {
    font-size: 2em;
    text-align: center;
  }
  .page-gdpr-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr-grid.page-gdpr-grid-3 {
    grid-template-columns: 1fr;
  }
  .page-gdpr-section {
    padding: 40px 0;
  }
  .page-gdpr-card {
    padding: 20px;
  }
  .page-gdpr-list li {
    padding-left: 25px;
  }
}

@media (max-width: 480px) {
  .page-gdpr-title {
    font-size: 2em;
  }
  .page-gdpr-subtitle {
    font-size: 1em;
  }
  .page-gdpr-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr-heading {
    font-size: 1.8em;
  }
}