/* style/gdpr.css */
:root {
  --primary-color: #1A202C;
  --secondary-color: #E0B400;
  --text-light: #FFFFFF;
  --text-dark: #1A202C;
  --background-light: #F8F8F8;
  --background-dark: #1A202C;
  --border-color: #333;
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
  background-color: var(--background-dark);
  line-height: 1.6;
}

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

/* Hero Section */
.page-gdpr__hero {
  position: relative;
  background: var(--primary-color);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

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

.page-gdpr__title {
  font-size: 3.5em;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__subtitle {
  font-size: 1.3em;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__highlight {
  color: var(--secondary-color);
}

.page-gdpr__btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

/* Sections */
.page-gdpr__section {
  padding: 60px 0;
  text-align: center;
}

.page-gdpr__section:nth-of-type(even) {
  background-color: #2a303c;
}

.page-gdpr__section:nth-of-type(odd) {
  background-color: var(--background-dark);
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--text-light);
  margin-bottom: 30px;
  font-weight: bold;
}

.page-gdpr__introduction p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 15px auto;
  color: var(--text-light);
}

/* Principles Grid */
.page-gdpr__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__grid-item {
  background-color: #2a303c;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__grid-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 10px;
}

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

.page-gdpr__icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(287deg) brightness(100%) contrast(100%); /* White color filter */
}

/* User Rights Section */
.page-gdpr__user-rights ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-gdpr__user-rights ul li {
  background-color: #2a303c;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 5px;
  color: var(--text-light);
  font-size: 1.1em;
}

.page-gdpr__user-rights ul li strong {
  color: var(--secondary-color);
}

.page-gdpr__user-rights p {
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto;
}

/* CTA Section */
.page-gdpr__cta {
  background-color: var(--primary-color);
  padding: 80px 0;
}

.page-gdpr__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta .page-gdpr__section-title {
  font-size: 3em;
  margin-bottom: 20px;
}

.page-gdpr__cta p {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__btn--primary {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-gdpr__btn--secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-gdpr__btn--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

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

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

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

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

  .page-gdpr__grid-item {
    padding: 20px;
  }

  .page-gdpr__hero, .page-gdpr__section {
    padding: 40px 0;
  }

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

  .page-gdpr__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
}

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

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

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

  .page-gdpr__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__btn {
    width: 80%;
    max-width: 300px;
  }
}