.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #0A1931; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-gdpr-hero {
  background: linear-gradient(135deg, #0A1931, #2A3B5B);
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
}

.page-gdpr-title {
  font-size: 3em;
  color: #FFC107; /* Gold for main title */
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-gdpr-hero-image {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

.page-gdpr-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-gdpr-heading {
  font-size: 2.2em;
  color: #FFC107; /* Gold for section headings */
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr-subheading {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

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

.page-gdpr-paragraph-small {
  font-size: 0.9em;
  color: #B0B0B0;
  margin-top: 30px;
  text-align: center;
}

.page-gdpr-keyword {
  color: #FFC107;
  font-weight: bold;
}

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

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

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

.page-gdpr-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(80%) saturate(2000%) hue-rotate(350deg) brightness(100%) contrast(100%); /* Adjust to gold-like color */
}

.page-gdpr-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr-list li {
  background-color: #1A2B42;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFC107;
  border-radius: 5px;
  color: #E0E0E0;
  font-size: 1.05em;
}

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

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

.page-gdpr-button {
  display: inline-block;
  background-color: #FFC107; /* Gold button */
  color: #0A1931; /* Dark blue text for contrast */
  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;
  margin-top: 30px;
  text-align: center;
}

.page-gdpr-button:hover {
  background-color: #E6B000; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

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

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

  .page-gdpr-subheading {
    font-size: 1.3em;
  }

  .page-gdpr-hero-image {
    max-width: 95%;
  }

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

@media (max-width: 480px) {
  .page-gdpr-title {
    font-size: 2em;
  }

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

  .page-gdpr-heading {
    font-size: 1.5em;
  }

  .page-gdpr-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}