/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for main text on dark background */
  line-height: 1.6;
  background-color: #1a1a1a; /* Dark background */
}

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

.page-gdpr__container--center {
  text-align: center;
}

.page-gdpr__hero {
  background: linear-gradient(135deg, #FF0055, #00FFEE);
  padding: 80px 0 40px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:hiphop_pattern,abstract,neon]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-gdpr__hero .page-gdpr__container {
  position: relative;
  z-index: 1;
}

.page-gdpr__title {
  font-size: 3.5em;
  margin-bottom: 10px;
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(0, 255, 238, 0.7);
  font-weight: 700;
}

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

.page-gdpr__hero-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(255, 0, 85, 0.5);
  margin-top: 30px;
  transition: transform 0.3s ease-in-out;
}

.page-gdpr__hero-image:hover {
  transform: scale(1.02);
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-gdpr__section--dark {
  background-color: #222222;
}

.page-gdpr__section--cta {
  background: linear-gradient(to right, #FF0055, #00FFEE);
  padding: 80px 0;
}

.page-gdpr__heading {
  font-size: 2.5em;
  color: #FF0055;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.page-gdpr__section--dark .page-gdpr__heading {
  color: #00FFEE;
}

.page-gdpr__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  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: #2c2c2c;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__grid-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(255, 0, 85, 0.5);
}

.page-gdpr__grid-item h3 {
  color: #FF0055;
  font-size: 1.5em;
  margin-top: 15px;
  margin-bottom: 10px;
}

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

.page-gdpr__icon {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 5px #00FFEE);
}

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

.page-gdpr__list li {
  background-color: #2c2c2c;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #FF0055;
  font-size: 1.1em;
  color: #E0E0E0;
  transition: border-left-color 0.3s ease;
}

.page-gdpr__list li:hover {
  border-left-color: #00FFEE;
}

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

.page-gdpr__image {
  max-width: 60%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 238, 0.3);
  margin: 30px auto;
  display: block;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
}

.page-gdpr__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__section::after {
  content: '';
  display: table;
  clear: both;
}

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 15px 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__button--primary {
  background-color: #FF0055;
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(255, 0, 85, 0.6);
}

.page-gdpr__button--primary:hover {
  background-color: #b3003b;
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.8);
  transform: translateY(-3px);
}

.page-gdpr__button--secondary {
  background-color: #00FFEE;
  color: #1a1a1a;
  box-shadow: 0 0 15px rgba(0, 255, 238, 0.6);
}

.page-gdpr__button--secondary:hover {
  background-color: #00b3a7;
  box-shadow: 0 0 20px rgba(0, 255, 238, 0.8);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__title {
    font-size: 3em;
  }
  .page-gdpr__heading {
    font-size: 2em;
  }
  .page-gdpr__image--left, .page-gdpr__image--right {
    float: none;
    margin: 30px auto;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0 30px;
  }
  .page-gdpr__title {
    font-size: 2.5em;
  }
  .page-gdpr__subtitle {
    font-size: 1.2em;
  }
  .page-gdpr__heading {
    font-size: 1.8em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__list li {
    padding: 15px;
  }
  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 5px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 40px 0 20px;
  }
  .page-gdpr__title {
    font-size: 2em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__heading {
    font-size: 1.5em;
  }
  .page-gdpr__text {
    font-size: 0.95em;
  }
  .page-gdpr__grid-item {
    padding: 20px;
  }
  .page-gdpr__list li {
    font-size: 1em;
  }
  .page-gdpr__button {
    display: block;
    width: 90%;
    margin: 10px auto;
  }
  .page-gdpr__hero-image {
    max-width: 95%;
  }
}