.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F0F0F0; /* Light grey for text on dark background */
  background-color: #0A192F; /* Main dark blue background */
}

.page-gdpr a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
}

.page-gdpr a:hover {
  text-decoration: underline;
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1A2A4F 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-gdpr__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
}

.page-gdpr__subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-gdpr__intro-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #F0F0F0;
}

.page-gdpr__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-gdpr__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
}

.page-gdpr__btn--primary:hover {
  background-color: #E0B800; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gdpr__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #1A2A4F; /* Subtle border between sections */
}

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

.page-gdpr__heading {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section headings */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

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

.page-gdpr__section h3 {
  font-size: 1.8em;
  color: #FFD700; /* Gold for subheadings */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-gdpr__list li {
  background-color: #1A2A4F; /* Slightly lighter dark blue for list items */
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.page-gdpr__list li:hover {
  transform: translateY(-5px);
}

.page-gdpr__list li p {
  margin-bottom: 0;
  color: #F0F0F0;
  font-size: 1em;
}

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

.page-gdpr__feature-item, .page-gdpr__data-item, .page-gdpr__right-item {
  background-color: #1A2A4F;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.page-gdpr__feature-item:hover, .page-gdpr__data-item:hover, .page-gdpr__right-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__feature-icon, .page-gdpr__data-icon, .page-gdpr__right-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Adjust icon color to gold */
}

.page-gdpr__feature-item h3, .page-gdpr__data-item h3, .page-gdpr__right-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-gdpr__feature-item p, .page-gdpr__data-item p, .page-gdpr__right-item p {
  color: #E0E0E0;
  font-size: 1em;
  text-align: center;
}

.page-gdpr__full-width-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: center;
}

.page-gdpr__contact-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #F0F0F0;
}

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

.page-gdpr__contact-text {
  text-align: center;
  margin-top: 30px;
}

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

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

  .page-gdpr__heading {
    font-size: 2em;
  }

  .page-gdpr__section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2.2em;
  }

  .page-gdpr__subtitle {
    font-size: 1.2em;
  }

  .page-gdpr__heading {
    font-size: 1.8em;
  }

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

  .page-gdpr__features, .page-gdpr__data-types, .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__feature-item, .page-gdpr__data-item, .page-gdpr__right-item {
    padding: 20px;
  }

  .page-gdpr__list li {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 1.8em;
  }

  .page-gdpr__subtitle {
    font-size: 1em;
  }

  .page-gdpr__heading {
    font-size: 1.5em;
  }

  .page-gdpr__btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .page-gdpr__cta-group {
    flex-direction: column;
  }

  .page-gdpr__feature-icon, .page-gdpr__data-icon, .page-gdpr__right-icon {
    width: 60px;
    height: 60px;
  }
}