.page-gdpr {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
}

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  background-color: #0A1931; /* Primary color for hero background */
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold accent for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-gdpr__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-gdpr__hero-image {
  margin: 40px auto 0;
  max-width: 900px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #1a2b45; /* Dark background for content */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  margin-top: -30px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 1;
}

.page-gdpr__article {
  line-height: 1.8;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold accent for section titles */
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
}

.page-gdpr__sub-section-title {
  font-size: 1.8em;
  color: #f0f0f0;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

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

.page-gdpr__image-wrapper {
  margin: 40px auto;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.page-gdpr__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
}

.page-gdpr__image-wrapper--small {
  max-width: 600px;
}

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-gdpr__button--primary {
  background-color: #FFD700; /* Gold primary button */
  color: #0A1931;
}

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

.page-gdpr__button--secondary {
  background-color: rgba(255, 255, 255, 0.15); /* Semi-transparent white secondary button */
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gdpr__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.page-gdpr__actions-bottom, .page-gdpr__call-to-action-buttons {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2.2em;
  }
  .page-gdpr__sub-section-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-gdpr__hero-actions, .page-gdpr__actions-bottom, .page-gdpr__call-to-action-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-gdpr__content-area {
    padding: 40px 15px;
    margin-top: -20px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .page-gdpr__sub-section-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .page-gdpr__paragraph {
    font-size: 1em;
  }
  .page-gdpr__image-wrapper img {
    max-width: 100%; /* Ensure images don't overflow on mobile */
    height: auto;
    min-width: 200px; /* Enforce minimum image size */
    min-height: 200px; /* Enforce minimum image size */
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__sub-section-title {
    font-size: 1.2em;
  }
  .page-gdpr__button {
    font-size: 1em;
    padding: 12px 25px;
  }
}