.page-gdpr {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding to respect shared body padding-top */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Max height for the hero image */
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto; /* Ensure image scales proportionally */
  display: block;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/5; /* For 1920x600, common hero ratio */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: 20px;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  max-width: 100%;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Responsive font size for H1 */
}

.page-gdpr__description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.page-gdpr__button--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border: none;
}

.page-gdpr__button--primary:hover {
  opacity: 0.9;
  box-shadow: 0 4px 12px rgba(47, 107, 255, 0.4);
}

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

.page-gdpr__button--secondary:hover {
  background-color: #2F6BFF;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(47, 107, 255, 0.2);
}

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

.page-gdpr__content-section--white-bg {
  background-color: #FFFFFF;
}

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

.page-gdpr__heading {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 30px;
  text-align: center;
}

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

.page-gdpr__image-text-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
}

.page-gdpr__image-wrapper {
  flex: 1;
  min-width: 200px; /* Enforce min-width for image wrapper */
}

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

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

.page-gdpr__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-gdpr__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-gdpr__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #2F6BFF; /* Primary color for list icon */
  font-weight: bold;
}

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

.page-gdpr__grid-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-gdpr__sub-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2F6BFF; /* Primary color for sub-headings */
  margin-bottom: 15px;
}

.page-gdpr__faq-list {
  margin-top: 30px;
}

.page-gdpr__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
}

.page-gdpr__faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-gdpr__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
}

/* Responsive Styles */
@media (max-width: 849px) {
  .page-gdpr__hero-content {
    margin-top: 15px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  .page-gdpr__description {
    font-size: 1rem;
  }

  .page-gdpr__image-text-layout {
    flex-direction: column;
    gap: 20px;
  }

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

  .page-gdpr__heading {
    font-size: clamp(1.3rem, 4vw, 2rem);
  }

  .page-gdpr__content-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-image,
  .page-gdpr__content-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-gdpr__hero-content {
    padding: 0 15px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .page-gdpr__heading {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    text-align: left;
  }

  .page-gdpr__container {
    padding: 0 15px;
  }

  .page-gdpr__sub-heading {
    font-size: 1.125rem;
  }

  .page-gdpr__faq-question {
    font-size: 1rem;
  }

  .page-gdpr__text,
  .page-gdpr__list-item,
  .page-gdpr__faq-answer {
    font-size: 0.9375rem;
  }

  .page-gdpr__button {
    padding: 10px 20px;
    font-size: 0.9375rem;
  }

  .page-gdpr__content-image {
    min-width: 200px;
    min-height: 200px;
  }
}