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

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

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Using primary/secondary for hero bg */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-gdpr__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #FFFFFF;
  /* No fixed font-size, rely on clamp for responsiveness if needed, but not explicitly asked for here */
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button--secondary {
  background: #A5C4FF; /* Using Glow color for secondary CTA */
  color: #1F2D3D;
}

.page-gdpr__cta-button--secondary:hover {
  background: #6FA3FF; /* Lighter blue for hover */
}

.page-gdpr__content-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-top: -40px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 2;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr__sub-title {
  font-size: 1.6em;
  font-weight: 600;
  color: #2F6BFF; /* Primary color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__paragraph {
  font-size: 1.05em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 15px;
}

.page-gdpr__link {
  color: #2F6BFF;
  text-decoration: underline;
  font-weight: 500;
}

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

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

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

.page-gdpr__list--grid {
  list-style: none;
  margin-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-gdpr__list--grid .page-gdpr__list-item {
  background-color: #F4F7FB; /* Background color */
  border: 1px solid #D6E2FF; /* Border color */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  font-size: 1em;
  color: #1F2D3D;
  text-align: left;
}

.page-gdpr__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 50px 0;
}

.page-gdpr__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__content-image {
  flex: 0 0 40%;
  max-width: 40%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: block;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-gdpr__text-content {
  flex: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__image-text-block {
    flex-direction: column;
    text-align: center;
  }

  .page-gdpr__image-text-block--reverse {
    flex-direction: column;
  }

  .page-gdpr__content-image {
    max-width: 80%;
    margin-bottom: 30px;
  }

  .page-gdpr__main-title {
    font-size: 2.2em;
  }

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

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 10px 15px 40px;
  }

  .page-gdpr__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em); /* Using clamp for H1 responsiveness */
  }

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

  .page-gdpr__section-title {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

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

  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 0.95em;
  }

  .page-gdpr__container {
    padding: 15px;
  }

  .page-gdpr__content-section {
    padding: 40px 15px;
    margin-top: -20px;
  }

  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-gdpr__content-image {
    max-width: 100%; /* Important for preventing overflow */
    height: auto; /* Important for preventing overflow */
  }

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

  /* Enforce min-size for all content images in mobile */
  .page-gdpr img {
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
  }
  .page-gdpr img[width][height] {
    /* Override fixed width/height if it makes it smaller than 200px, but usually max-width:100% is enough */
    width: auto; /* Allow auto width to respect max-width */
    height: auto; /* Allow auto height to respect max-width */
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: clamp(1.6em, 7vw, 2em);
  }

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

  .page-gdpr__cta-button {
    padding: 10px 20px;
  }
}