.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__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gdpr__hero-section {
  background-color: #f8f8f8;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-gdpr__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.3em;
  color: #555555;
  margin-bottom: 30px;
}

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

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

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1000px; /* Adjust max-width for better visual */
  margin-top: 40px;
}

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

.page-gdpr__commitment-section, 
.page-gdpr__rights-section, 
.page-gdpr__implementation-section, 
.page-gdpr__contact-section, 
.page-gdpr__cta-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-gdpr__commitment-section {
  border-bottom: 1px solid #eeeeee;
}

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

.page-gdpr__section-text {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-gdpr__commitment-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-gdpr__commitment-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  max-height: 300px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

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

.page-gdpr__commitment-description {
  font-size: 1em;
  color: #666666;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  background-color: #fdfdfd;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__rights-item {
  padding: 18px 25px;
  border-bottom: 1px solid #eeeeee;
  font-size: 1.1em;
  color: #333333;
  text-align: left;
}

.page-gdpr__rights-item:last-child {
  border-bottom: none;
}

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

.page-gdpr__rights-image-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0 auto;
}

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

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

.page-gdpr__feature-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-gdpr__feature-heading {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-gdpr__feature-description {
  font-size: 0.95em;
  color: #666666;
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  margin-top: 30px;
}

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

.page-gdpr__cta-section {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-gdpr__cta-section .page-gdpr__section-title {
  color: #ffffff;
}

.page-gdpr__cta-section .page-gdpr__section-text {
  color: #f0f0f0;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__cta-button--primary {
  background-color: #FCBC45;
  color: #000000;
}

.page-gdpr__cta-button--primary:hover {
  background-color: #e0a53b;
}

.page-gdpr__cta-button--secondary {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
}

.page-gdpr__cta-button--secondary:hover {
  background-color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 0;
    gap: 20px;
  }

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

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

  .page-gdpr__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-gdpr__section-text {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

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

  .page-gdpr__rights-item {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__cta-button {
    width: 80%;
    margin: 0 auto;
  }

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