/* style/gdpr.css */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E2E8F0; /* Light text for dark background */
  background-color: #1A202C; /* Primary dark background */
}

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%); /* Dark gradient for hero */
  color: #FFD700;
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-gdpr__title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
}

.page-gdpr__subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #CBD5E0; /* Lighter text for subtitle */
}

.page-gdpr__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-gdpr__button--bottom {
  margin-top: 40px;
  font-size: 1.1em;
}

.page-gdpr__content-section {
  padding: 60px 0;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-gdpr__content-section p {
  margin-bottom: 15px;
  color: #E2E8F0;
}

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

.page-gdpr__grid-item {
  background-color: #2D3748; /* Slightly lighter dark background for cards */
  padding: 25px;
  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: #FFD700;
  font-size: 1.4em;
  margin-top: 15px;
  margin-bottom: 10px;
}

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

.page-gdpr__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
}

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

.page-gdpr__list li {
  background-color: #2D3748;
  margin-bottom: 10px;
  padding: 12px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  color: #E2E8F0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-gdpr__list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

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

.page-gdpr__image-full-width {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

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

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

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

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

  .page-gdpr__list li {
    padding: 10px 15px;
  }
}