/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #e5d1bb; /* Light text on dark backgrounds */
  background-color: #1A2E44; /* Primary dark background */
  line-height: 1.6;
}

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

.page-gdpr-hero {
  background: linear-gradient(135deg, #1A2E44 0%, #3a4d63 100%);
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-gdpr-title {
  font-size: 3.2em;
  color: #FFD700; /* Accent color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr-subtitle {
  font-size: 1.4em;
  color: #e5d1bb;
  margin-bottom: 40px;
}

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

.page-gdpr-dark-bg {
  background-color: #0f2033;
}

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

.page-gdpr-heading-center {
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr-description {
  font-size: 1.1em;
  color: #e5d1bb;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

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

.page-gdpr-reverse-grid {
  grid-template-columns: 1fr 1fr;
}

.page-gdpr-text-block p {
  margin-bottom: 15px;
  color: #e5d1bb;
}

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

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

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

.page-gdpr-card {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-gdpr-card p {
  color: #e5d1bb;
}

.page-gdpr-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-gdpr-list li {
  background-color: #0f2033;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 4px solid #FFD700;
  border-radius: 4px;
  color: #e5d1bb;
}

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

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

.page-gdpr-feature-item {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-gdpr-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: none; /* Ensure no color filters */
}

.page-gdpr-feature-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-gdpr-feature-item p {
  color: #e5d1bb;
}

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

.page-gdpr-contact-info {
  font-size: 1.2em;
  color: #e5d1bb;
  margin-bottom: 10px;
}

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

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

.page-gdpr-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E44;
  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;
  border: none;
  cursor: pointer;
}

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

.page-gdpr-btn-primary {
  background-color: #FFD700;
  color: #1A2E44;
}

.page-gdpr-btn-secondary {
  background-color: #1A2E44;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-gdpr-btn-secondary:hover {
  background-color: #0f2033;
  color: #ffe04d;
  border-color: #ffe04d;
}

.page-gdpr-button-group {
  margin-top: 40px;
}

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

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

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

  .page-gdpr-content-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr-reverse-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr-image-wrapper {
    order: -1; /* Move image above text on mobile for reverse grid */
  }

  .page-gdpr-grid-3, .page-gdpr-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .page-gdpr-btn-secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  
  .page-gdpr-button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@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;
  }
}