.page-gdpr {
  color: #333333; /* Dark text for default light body background */
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  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.5); /* Darken image for text readability */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
  background: rgba(26, 32, 44, 0.7); /* Semi-transparent background using main color */
  border-radius: 10px;
}

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for title */
  line-height: 1.2;
}

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

.page-gdpr__button--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #1A202C; /* Main color for text */
  border: 2px solid #FFD700;
}

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

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

.page-gdpr__button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C; /* Main color for text */
}

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

.page-gdpr__section-header {
  text-align: center;
  margin-bottom: 50px;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #1A202C; /* Main color */
  margin-bottom: 15px;
}

.page-gdpr__section-intro {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.page-gdpr__card-image {
  width: 100%; /* Image will fill card width */
  max-width: 400px; /* Max width for image */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #1A202C; /* Main color */
  margin-bottom: 15px;
}

.page-gdpr__card-text {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-gdpr__card-link {
  color: #FFD700; /* Auxiliary color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__card-link:hover {
  color: #e6c200;
}

.page-gdpr__call-to-action {
  background-color: #1A202C; /* Main color */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
}

.page-gdpr__cta-title {
  font-size: 2.2em;
  color: #FFD700; /* Auxiliary color */
  margin-bottom: 20px;
}

.page-gdpr__cta-text {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

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

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

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

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 100px); /* Adjust for mobile header */
  }

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

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

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

  .page-gdpr__button {
    width: 100%;
    max-width: 300px;
  }

  .page-gdpr__content-area {
    padding: 40px 15px;
  }

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

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

  .page-gdpr__card-image {
    max-width: 100%;
  }

  .page-gdpr__cta-title {
    font-size: 1.6em;
  }

  /* Mobile content area image overflow prevention */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 80px);
  }

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

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

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

  .page-gdpr__cta-title {
    font-size: 1.4em;
  }
}