/* style/gdpr.css */
.page-gdpr {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background from shared.css */
  padding-top: var(--header-offset, 120px); /* Space for fixed header */
}

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6);
}

.page-gdpr__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold brand color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  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: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
}

.page-gdpr__button--primary {
  background-color: #FFD700; /* Gold */
  color: #1a1a1a;
  border: 2px solid #FFD700;
}

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

.page-gdpr__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

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

.page-gdpr__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.7;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #8B0000; /* Dark Red accent */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__commitment-list,
.page-gdpr__protection-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-gdpr__commitment-item,
.page-gdpr__protection-item {
  background-color: rgba(255, 215, 0, 0.1);
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #f0f0f0;
}

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

.page-gdpr__right-card {
  background-color: rgba(139, 0, 0, 0.2); /* Semi-transparent dark red */
  border: 1px solid #8B0000;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__right-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__right-icon {
  width: 150px;
  height: 112.5px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-gdpr__right-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-gdpr__contact-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

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

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

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

  .page-gdpr__button {
    width: 100%;
    padding: 10px 20px;
  }

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

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

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

  .page-gdpr__content-area img,
  .page-gdpr__right-card img {
    max-width: 100%;
    height: auto;
  }

  .page-gdpr__contact-actions {
    flex-direction: column;
  }
}

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

  .page-gdpr__hero-container {
    padding: 20px 15px;
  }

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

  .page-gdpr__content-area {
    padding: 40px 15px;
  }
  
  /* Ensure all content area images are responsive and do not overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}