.page-gdpr {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-gdpr__hero-button:hover {
  background-color: #e6c200;
}

.page-gdpr__content-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #1A1A1A;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__section-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-gdpr__commitment-section,
.page-gdpr__what-is-gdpr-section,
.page-gdpr__your-rights-section,
.page-gdpr__data-protection-section,
.page-gdpr__data-processing-section,
.page-gdpr__contact-section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-gdpr__commitment-section {
  background-color: #f9f9f9;
}

.page-gdpr__columns {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-gdpr__columns--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__column-text {
  flex: 1;
}

.page-gdpr__column-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image--center {
  display: block;
  margin: 40px auto 20px auto;
}

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

.page-gdpr__right-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-gdpr__card-description {
  font-size: 1em;
  color: #555555;
}

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

.page-gdpr__security-item {
  background-color: #f0f0f0;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1.1em;
  border-left: 5px solid #FFD700;
}

.page-gdpr__security-item strong {
  color: #1A1A1A;
}

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

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

.page-gdpr__contact-buttons {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #1A1A1A;
  color: #FFD700;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__contact-button:hover {
  background-color: #333333;
  color: #FFD700;
}

.page-gdpr__contact-button--secondary {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-gdpr__contact-button--secondary:hover {
  background-color: #e6c200;
  color: #1A1A1A;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    height: 400px;
  }

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

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

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

  .page-gdpr__section-paragraph {
    font-size: 0.95em;
  }

  .page-gdpr__columns {
    flex-direction: column;
  }

  .page-gdpr__columns--reverse {
    flex-direction: column;
  }

  .page-gdpr__image {
    max-width: 100%;
    height: auto;
  }

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

  .page-gdpr__contact-button {
    margin: 10px 0;
    width: 100%;
    box-sizing: border-box;
  }
}

/* Ensure all content area images are responsive and not too small */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  /* Ensure minimum display size for content images */
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    min-width: unset; /* Remove min-width on mobile to allow scaling down */
    min-height: unset; /* Remove min-height on mobile to allow scaling down */
  }
}