/* 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: 0 20px;
}

.page-gdpr-hero-section {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Darker blue for depth */
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr-hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #fff;
}

.page-gdpr-hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

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

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

.page-gdpr-section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
}

.page-gdpr-section-subtitle {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr-highlight {
  color: #FFD700;
}

.page-gdpr-btn {
  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;
  font-size: 1.1em;
}

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

.page-gdpr-btn-primary:hover {
  background-color: #e6c200;
  color: #001a33;
}

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

.page-gdpr-btn-secondary:hover {
  background-color: #001a33;
  color: #FFD700;
  border-color: #001a33;
}

.page-gdpr-content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

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

.page-gdpr-content-text {
  flex: 1;
  font-size: 1.05em;
  color: #444;
}

.page-gdpr-content-text p {
  margin-bottom: 15px;
}

.page-gdpr-content-image {
  flex: 1;
  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-principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr-principle-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-gdpr-principle-item h3 {
  color: #003366;
  font-size: 1.4em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-gdpr-principle-item p {
  color: #555;
  font-size: 0.95em;
}

.page-gdpr-icon {
  width: 60px;
  height: 60px;
  color: #FFD700;
}

.page-gdpr-rights-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr-rights-list li {
  background-color: #f9f9f9;
  border-left: 5px solid #003366;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05em;
  color: #333;
}

.page-gdpr-list-icon {
  width: 30px;
  height: 30px;
  color: #FFD700;
  flex-shrink: 0;
}

.page-gdpr-contact p {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #444;
}

.page-gdpr-contact-link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr-contact-link:hover {
  text-decoration: underline;
  color: #001a33;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr-hero-title {
    font-size: 2.5em;
  }
  .page-gdpr-section-title {
    font-size: 2em;
  }
  .page-gdpr-content-grid {
    flex-direction: column;
  }
  .page-gdpr-content-grid.page-gdpr-reverse-grid {
    flex-direction: column;
  }
  .page-gdpr-principles-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr-hero-section {
    padding: 60px 0;
  }
  .page-gdpr-hero-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;
  }
  .page-gdpr-section-subtitle {
    font-size: 1em;
  }
  .page-gdpr-btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-gdpr-rights-list li {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-gdpr-list-icon {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .page-gdpr-hero-title {
    font-size: 1.8em;
  }
  .page-gdpr-section-title {
    font-size: 1.5em;
  }
  .page-gdpr-principles-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr-contact p {
    font-size: 0.95em;
  }
}