.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text on dark background */
  background-color: #1A1A2E;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%);
  padding: 100px 0 60px;
  text-align: center;
  border-bottom: 2px solid #E6B325;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  color: #E6B325;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__btn--primary {
  background-color: #E6B325;
  color: #1A1A2E;
}

.page-gdpr__btn--primary:hover {
  background-color: #f7d46c;
}

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

.page-gdpr__btn--secondary:hover {
  background-color: #E6B325;
  color: #1A1A2E;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(230, 179, 37, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-gdpr__section.page-gdpr--fade-in {
  opacity: 1;
  transform: translateY(0);
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #E6B325;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-gdpr__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__text-content {
  flex: 1;
}

.page-gdpr__image-wrapper {
  flex: 1;
  text-align: center;
}

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

.page-gdpr__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-gdpr__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-gdpr__list li::before {
  content: '✔';
  color: #E6B325;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

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

.page-gdpr__list--grid li {
  background-color: #2A2A4A;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: left;
  padding-left: 25px; /* Adjust for no checkmark icon */
}

.page-gdpr__list--grid li h3 {
  color: #E6B325;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-gdpr__list--grid li p {
  font-size: 1em;
  color: #D3D3D3;
}

.page-gdpr__list--grid li::before {
  content: none; /* Remove checkmark for grid items */
}

.page-gdpr__link {
  color: #E6B325;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-gdpr__contact p {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-gdpr__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-gdpr__image-wrapper {
    margin-top: 30px;
  }
  .page-gdpr__list--grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
}

@media (max-width: 576px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-gdpr__list li {
    font-size: 1em;
  }
  .page-gdpr__list--grid li {
    padding: 20px;
  }
  .page-gdpr__list--grid li h3 {
    font-size: 1.3em;
  }
}