/* style/gdpr.css */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for text on dark background */
  background-color: #1A1A1A; /* Main dark background */
}

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

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

.page-gdpr-title {
  font-size: 3.2em;
  color: #FFD700; /* Accent gold for main title */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-gdpr-subtitle {
  font-size: 1.3em;
  color: #CCCCCC;
  margin-bottom: 30px;
}

.page-gdpr-hero-image {
  max-width: 600px;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.page-gdpr-section {
  padding: 60px 0;
  background-color: #1A1A1A;
}

.page-gdpr-alternate-bg {
  background-color: #222222;
}

.page-gdpr-section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-gdpr p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

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

.page-gdpr-grid-item {
  background-color: #2A2A2A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

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

.page-gdpr-grid-item p {
  font-size: 0.95em;
  color: #CCCCCC;
  text-align: center;
}

.page-gdpr-icon {
  width: 60px;
  height: 60px;
  filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

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

.page-gdpr-list li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 30px;
  font-size: 1.1em;
  color: #E0E0E0;
}

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

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

.page-gdpr-security-image {
  display: block;
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.page-gdpr-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr-title {
    font-size: 2.8em;
  }
  .page-gdpr-section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr-hero {
    padding: 60px 0;
  }
  .page-gdpr-title {
    font-size: 2.2em;
  }
  .page-gdpr-subtitle {
    font-size: 1.1em;
  }
  .page-gdpr-section {
    padding: 40px 0;
  }
  .page-gdpr-section-title {
    font-size: 1.8em;
  }
  .page-gdpr p,
  .page-gdpr-list li {
    font-size: 1em;
  }
  .page-gdpr-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr-hero-image,
  .page-gdpr-security-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-gdpr-title {
    font-size: 1.8em;
  }
  .page-gdpr-subtitle {
    font-size: 0.95em;
  }
  .page-gdpr-section-title {
    font-size: 1.5em;
  }
  .page-gdpr-grid-item {
    padding: 20px;
  }
  .page-gdpr-grid-item h3 {
    font-size: 1.2em;
  }
  .page-gdpr-list li {
    padding-left: 25px;
  }
}