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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A1931, #2a3d5f);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-gdpr__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

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

.page-gdpr__section--alt-bg {
  background-color: #1a2a47;
}

.page-gdpr__heading {
  font-size: 2em;
  color: #E6B325;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-gdpr__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.page-gdpr__grid--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__grid-item {
  flex: 1;
  min-width: 300px;
}

.page-gdpr__image-small {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr__list {
  list-style: disc;
  padding-left: 25px;
  color: #e0e0e0;
}

.page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gdpr__list strong {
  color: #E6B325;
}

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

.page-gdpr__feature-item {
  background-color: #0A1931;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #E6B325;
}

.page-gdpr__feature-title {
  font-size: 1.4em;
  color: #E6B325;
  margin-bottom: 15px;
}

.page-gdpr__feature-text {
  color: #c0c0c0;
  font-size: 1em;
}

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

.page-gdpr__contact-cta {
  text-align: center;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #E6B325; /* Auxiliary color for buttons */
  color: #0A1931;
  padding: 12px 25px;
  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;
  border: none;
  cursor: pointer;
}

.page-gdpr__button:hover {
  background-color: #ffc107;
  transform: translateY(-2px);
}

.page-gdpr__button--primary {
  background-color: #E6B325;
  color: #0A1931;
}

.page-gdpr__button--primary:hover {
  background-color: #ffc107;
}

.page-gdpr__image-contact {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section--cta {
  text-align: center;
  padding: 80px 0;
  background-color: #0A1931;
  border-top: 2px solid #E6B325;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2em;
  }
  .page-gdpr__heading {
    font-size: 1.6em;
  }
  .page-gdpr__paragraph {
    font-size: 1em;
  }
  .page-gdpr__grid {
    flex-direction: column;
  }
  .page-gdpr__grid--reverse {
    flex-direction: column;
  }
  .page-gdpr__hero-image, .page-gdpr__image-full, .page-gdpr__image-contact {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__heading {
    font-size: 1.4em;
  }
  .page-gdpr__button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-gdpr__list {
    padding-left: 20px;
  }
}