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

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

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

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #E0E0E0;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark blue text on gold */
  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__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.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__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.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__principles p, .page-gdpr__rights p, .page-gdpr__data-collection p, .page-gdpr__contact p {
  text-align: center;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.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: rgba(255, 255, 255, 0.05); /* Slightly transparent white for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-gdpr__grid-item h3 {
  color: #FFD700; /* Gold for item titles */
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-gdpr__grid-item p {
  color: #E0E0E0;
  font-size: 0.95em;
  text-align: center;
}

.page-gdpr__icon {
  width: 60px;
  height: 60px;
  filter: invert(80%) sepia(50%) saturate(1000%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Make icons gold */
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__list li {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #FFD700; /* Gold accent */
  border-radius: 5px;
  color: #E0E0E0;
  transition: background-color 0.3s ease;
}

.page-gdpr__list li:hover {
  background-color: rgba(255, 255, 255, 0.07);
}

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

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

.page-gdpr__image--left {
  float: left;
  width: 45%;
  margin-right: 5%;
}

.page-gdpr__image--right {
  float: right;
  width: 45%;
  margin-left: 5%;
}

.page-gdpr__data-collection p, .page-gdpr__contact p {
  text-align: left;
  margin-bottom: 15px;
  color: #E0E0E0;
}

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

/* Clearfix for floated images */
.page-gdpr__data-collection::after,
.page-gdpr__rights::after {
  content: "";
  display: table;
  clear: both;
}

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

  .page-gdpr__section-title {
    font-size: 1.8em;
  }

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

  .page-gdpr__image--left,
  .page-gdpr__image--right {
    float: none;
    width: 100%;
    margin: 30px 0;
  }
  
  .page-gdpr__list li {
    padding: 12px 15px;
  }
}

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

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

  .page-gdpr__section-title {
    font-size: 1.5em;
  }

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