/* style/gdpr.css */
.page-gdpr {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
  font-family: Arial, sans-serif;
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  overflow: hidden;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Darken image for better text readability, no color change */
}

.page-gdpr__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  z-index: 1;
}

.page-gdpr__hero-content {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold accent */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-gdpr__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

.page-gdpr__button--primary {
  background-color: #FFD700;
  color: #000000;
}

.page-gdpr__button--primary:hover {
  background-color: #e6c200;
}

.page-gdpr__button--secondary {
  background-color: #8B0000;
  color: #ffffff;
  border: 1px solid #8B0000;
}

.page-gdpr__button--secondary:hover {
  background-color: #6a0000;
}

.page-gdpr__button--contact {
  background-color: #FFD700;
  color: #000000;
  margin-top: 20px;
}

.page-gdpr__button--contact:hover {
  background-color: #e6c200;
}

.page-gdpr__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 30px;
}

.page-gdpr__text {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: left;
}

.page-gdpr__highlight {
  color: #FFD700;
  font-weight: bold;
}

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

.page-gdpr__card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__card-image {
  width: 100%; /* Ensure images are not smaller than 200px */
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-gdpr__card-text {
  font-size: 0.95em;
  color: #cccccc;
  line-height: 1.6;
  text-align: center;
}

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

.page-gdpr__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #8B0000;
  margin-bottom: 15px;
  padding: 15px 20px;
  text-align: left;
  font-size: 1.05em;
  color: #f0f0f0;
  border-radius: 5px;
}

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

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

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

.page-gdpr__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  max-width: 800px; /* Ensure images are not smaller than 200px */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__contact-info {
  margin-top: 30px;
}

.page-gdpr__contact-info .page-gdpr__text {
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.4em;
  }

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

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px);
  }

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

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

  .page-gdpr__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__button {
    width: 80%;
    margin: 0 auto;
  }

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

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

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

  .page-gdpr__card-image, .page-gdpr__image-full-width {
    max-width: 100%; /* Ensure images are not smaller than 200px and responsive */
    height: auto;
  }

  .page-gdpr__list-item {
    font-size: 0.9em;
  }

  /* Ensure content area images are responsive and do not cause overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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