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

.page-gdpr__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding as per rule */
  background-color: #2F6BFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
}

.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;
  object-fit: cover;
}

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 0 20px;
  color: #FFFFFF;
}

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem); /* Use clamp for H1 on mobile */
  }
}

.page-gdpr__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #D6E2FF;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

.page-gdpr__cta-button--secondary {
  background: #6FA3FF;
}

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

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #D6E2FF;
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

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

.page-gdpr__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__paragraph {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-gdpr__inline-link {
  color: #2F6BFF;
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr__inline-link:hover {
  color: #6FA3FF;
}

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

.page-gdpr__grid-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
  text-align: center;
}

.page-gdpr__grid-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
}

.page-gdpr__grid-text {
  font-size: 1rem;
  color: #1F2D3D;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__section-title {
    font-size: 1.8rem;
  }

  .page-gdpr__paragraph,
  .page-gdpr__list-item,
  .page-gdpr__grid-text {
    font-size: 1rem;
  }

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

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

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

/* Ensure content area images are not too small */
.page-gdpr img:not(.page-gdpr__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* Override for hero image if it's smaller than the general rule, but hero is already large */
.page-gdpr__hero-image {
  min-width: unset;
  min-height: unset;
}