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

.page-gdpr__hero {
  background-color: #0A192F;
  background-image: linear-gradient(135deg, #0A192F 0%, #1a2a44 100%); /* Subtle gradient for depth */
  padding: 80px 20px;
  text-align: center;
  color: #FFD700; /* Gold for hero title/subtitle */
  border-bottom: 2px solid #FFD700;
}

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for primary titles */
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.page-gdpr__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-gdpr__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-gdpr__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-gdpr__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #1A2A44; /* Dark blue for sections */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-gdpr__section--alt {
  background-color: #0A192F; /* Even darker blue for alternating sections */
}

.page-gdpr__heading {
  font-size: 2em;
  color: #FFD700; /* Gold for section headings */
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.page-gdpr__heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #FFD700;
  margin: 10px auto 0;
}

.page-gdpr__subheading {
  font-size: 1.5em;
  color: #FFD700; /* Gold for subheadings */
  margin-bottom: 15px;
}

.page-gdpr__text {
  font-size: 1.1em;
  color: #E0E0E0; /* Light gray for text */
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__list {
  list-style: disc inside;
  color: #E0E0E0;
  margin-left: 20px;
  margin-bottom: 20px;
}

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

.page-gdpr__list 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: #1A2A44;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-left: 4px solid #FFD700;
}

.page-gdpr__grid-item .page-gdpr__subheading {
  margin-top: 0;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

  .page-gdpr__subheading {
    font-size: 1.3em;
  }

  .page-gdpr__section {
    padding: 40px 15px;
  }

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

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

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

  .page-gdpr__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-gdpr__text {
    font-size: 0.95em;
  }

  .page-gdpr__list {
    margin-left: 10px;
  }
}