.page-gdpr {
  color: #000000; /* Dark text for light background */
  background-color: #FFFFFF; /* Body background is light */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-gdpr__hero-section {
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #FFFFFF;
}

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

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

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-gdpr__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #FCBC45;
}

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

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

.page-gdpr__button--secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* Ensure responsiveness */
  min-width: 200px;
  min-height: 200px;
}

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

.page-gdpr__section-title {
  font-size: 2.5rem;
  margin-top: 50px;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
  color: #000000;
}

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

.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Ensure responsiveness */
  min-width: 200px;
  min-height: 200px;
}

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

.page-gdpr__commitment-item {
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FCBC45;
}

.page-gdpr__commitment-heading {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 600;
}

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

.page-gdpr__rights-item {
  background-color: #FDFDFD;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #333333;
}

.page-gdpr__rights-item strong {
  color: #000000;
}

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

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 3rem;
  }

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

  .page-gdpr__hero-description,
  .page-gdpr__paragraph {
    font-size: 1rem;
  }
}

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

  .page-gdpr__hero-section {
    padding: 60px 15px 30px;
  }

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

  .page-gdpr__hero-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

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

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

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

  .page-gdpr__section-title {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 25px;
  }

  .page-gdpr__commitment-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__image, .page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

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

  .page-gdpr__section-title {
    font-size: 1.6rem;
  }

  .page-gdpr__hero-description,
  .page-gdpr__paragraph,
  .page-gdpr__rights-item {
    font-size: 0.9rem;
  }

  .page-gdpr__hero-section {
    padding: 40px 10px 20px;
  }

  .page-gdpr__content-area {
    padding: 30px 10px;
  }
}