.page-gdpr {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
}

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

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
  text-align: center;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 20px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce min size */
  min-height: 200px;
}

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

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFFFFF;
  /* As per instructions, avoid fixed font-size for H1. Use clamp if specific range is needed: */
  /* font-size: clamp(2.5rem, 5vw, 3.5rem); */
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 25px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure button is not too small */
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-gdpr__cta-button--secondary {
  background: #FFFFFF;
  color: #2F6BFF;
  border: 1px solid #2F6BFF;
}

.page-gdpr__cta-button--secondary:hover {
  background: #F4F7FB;
  color: #2F6BFF;
}

.page-gdpr__content-section {
  padding: 50px 0;
}

.page-gdpr__section-title {
  color: #1F2D3D;
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.3;
}

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

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-bottom: 30px;
  }

  .page-gdpr__main-title {
    /* Rely on default scaling or parent font size for mobile, fixed values are prohibited */
  }

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

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

  .page-gdpr__cta-button {
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
  }

  .page-gdpr__container {
    padding: 15px;
  }

  .page-gdpr__hero-image,
  .page-gdpr__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Adhering to the global minimum size requirement */
    min-height: 200px; /* Adhering to the global minimum size requirement */
  }
}