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

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

.page-gdpr__hero {
  position: relative;
  background: linear-gradient(135deg, #1A2B4C, #0F1A2E);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  color: #FFD700; /* Gold for hero text */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #FFD700; /* Gold for main title */
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #FFFFFF; /* White for description */
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
}

.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__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr__introduction p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-gdpr__introduction p strong {
  color: #FFD700;
}

.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: #0F1A2E;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
  background-color: #2A3C5D;
}

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

.page-gdpr__grid-item p {
  color: #E0E0E0;
  font-size: 0.95em;
}

.page-gdpr__item-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-gdpr__rights ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__rights li {
  background-color: #0F1A2E;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
}

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

.page-gdpr__list-icon {
  width: 40px;
  height: 40px;
  margin-right: 20px;
  object-fit: contain;
}

.page-gdpr__contact-cta {
  text-align: center;
  padding-bottom: 80px;
}

.page-gdpr__contact-cta p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-gdpr__contact-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2B4C; /* Dark blue text on button */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__button:hover {
  background-color: #E0B500; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 80px 0;
  }

  .page-gdpr__hero-title {
    font-size: 2.5em;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
  }

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

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

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

  .page-gdpr__rights li {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .page-gdpr__list-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

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

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

  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}