/* style/gdpr.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A1A2E; /* Dark Blue/Purple */
  --text-light: #F0F0F0;
  --text-dark: #333333;
  --background-light: #FFFFFF;
  --background-dark: #121212;
  --border-color: #E0E0E0;
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

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

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

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

.page-gdpr-main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr-hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-light);
}

.page-gdpr-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.page-gdpr-section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.page-gdpr-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-gdpr-card {
  background-color: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr-card h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.page-gdpr-card p {
  color: var(--text-dark);
  font-size: 1.05em;
}

.page-gdpr-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

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

.page-gdpr-list li strong {
  color: var(--secondary-color);
}

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

.page-gdpr a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr-main-title {
    font-size: 2.5em;
  }
  .page-gdpr-hero-description {
    font-size: 1.1em;
  }
  .page-gdpr-section-title {
    font-size: 2em;
  }
  .page-gdpr-card h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-gdpr-hero {
    padding: 60px 0;
  }
  .page-gdpr-main-title {
    font-size: 2em;
  }
  .page-gdpr-hero-description {
    font-size: 1em;
  }
  .page-gdpr-section {
    padding: 40px 0;
  }
  .page-gdpr-section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr-card {
    padding: 20px;
  }
  .page-gdpr-card h3 {
    font-size: 1.3em;
  }
  .page-gdpr-list {
    margin-left: 15px;
  }
  .page-gdpr-list li, .page-gdpr-card p {
    font-size: 0.95em;
  }
}

@media (max-width: 576px) {
  .page-gdpr-hero {
    padding: 40px 0;
  }
  .page-gdpr-main-title {
    font-size: 1.8em;
  }
  .page-gdpr-hero-description {
    font-size: 0.9em;
  }
  .page-gdpr-section {
    padding: 30px 0;
  }
  .page-gdpr-section-title {
    font-size: 1.5em;
    margin-bottom: 25px;
  }
  .page-gdpr-card h3 {
    font-size: 1.2em;
  }
  .page-gdpr-list {
    margin-left: 10px;
  }
  .page-gdpr-image {
    margin: 20px auto;
  }
}