.page-gdpr {
  background-color: #113B7A;
  color: #F3F8FF;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 20px; /* Small padding to avoid double header offset */
}

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding for the first section */
  background-color: #08162B;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  max-height: 675px; /* Limit height for aesthetic */
  margin-bottom: 20px;
}

.page-gdpr__hero-content {
  text-align: center;
  padding: 0 20px 40px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.page-gdpr__main-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.page-gdpr__hero-description {
  font-size: 1.15rem;
  color: #AFC4E8;
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-gdpr__section:nth-of-type(even) {
  background-color: #10233F;
}

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #F2C14E;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.page-gdpr__paragraph {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #F3F8FF;
  text-align: justify;
}

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

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

.page-gdpr__list-item {
  background-color: #1B3357;
  border-left: 4px solid #1D5FD1;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #F3F8FF;
  font-size: 1rem;
}

.page-gdpr__list-item strong {
  color: #F2C14E;
}

.page-gdpr__button {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background 0.3s ease;
  min-width: 200px; /* Ensure button is not too small */
  text-align: center;
}

.page-gdpr__button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
}

.page-gdpr__faq-item {
  background-color: #10233F;
  border: 1px solid #244D84;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-gdpr__faq-question {
  font-size: 1.2rem;
  color: #F2C14E;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__faq-answer {
  font-size: 1rem;
  color: #AFC4E8;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-content {
    padding: 0 15px 30px;
  }

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

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

  .page-gdpr__section {
    padding: 30px 15px;
  }

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

  .page-gdpr__paragraph, .page-gdpr__list-item, .page-gdpr__faq-answer {
    font-size: 0.95rem;
  }

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

  /* Ensure content area images do not cause overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-gdpr__main-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .page-gdpr__hero-image {
    max-height: 400px;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }

  .page-gdpr__button {
    width: 100%;
    max-width: 300px;
    font-size: 1rem;
  }

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

/* Prevent horizontal overflow for the main content area */
.page-gdpr {
  overflow-x: hidden;
}