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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a455a 100%); /* Dark gradient for hero */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Auxiliary light text for hero title */
}

.page-gdpr__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary light text */
  font-weight: bold;
}

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

.page-gdpr__btn {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for button */
  color: #1A202C; /* Dark text for auxiliary button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__btn:hover {
  background-color: #e6c200; /* Slightly darker auxiliary on hover */
  color: #0d1017;
}

.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.5em;
  color: #FFD700; /* Auxiliary color for headings */
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__content-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-gdpr__content-flex:nth-child(even) {
  flex-direction: row-reverse;
}

.page-gdpr__text-block {
  flex: 1;
  min-width: 300px;
}

.page-gdpr__image-block {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

.page-gdpr__section--intro p,
.page-gdpr__section--commitment p,
.page-gdpr__section--rights p,
.page-gdpr__section--contact p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

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

.page-gdpr__grid-item {
  background-color: #2a3342; /* Slightly lighter dark background for items */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__grid-item h3 {
  color: #FFD700; /* Auxiliary color for subheadings */
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-gdpr__grid-item p {
  color: #cccccc;
  font-size: 1em;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  color: #f0f0f0;
  font-size: 1.1em;
}

.page-gdpr__list li {
  margin-bottom: 10px;
}

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

.page-gdpr__link {
  color: #FFD700; /* Auxiliary color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-gdpr__final-cta {
  text-align: center;
  font-size: 1.2em;
  margin-top: 40px;
  color: #f0f0f0;
}

.page-gdpr__link-cta {
  color: #FFD700; /* Auxiliary color for CTA link */
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__link-cta:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

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

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

  .page-gdpr__content-flex {
    flex-direction: column;
  }

  .page-gdpr__content-flex:nth-child(even) {
    flex-direction: column;
  }

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