.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: var(--color-deep-navy); /* Body background from shared.css */
}

.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, #113B7A 0%, #08162B 100%);
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

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

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-gdpr__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.05em;
  max-width: 100%; /* For button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF; /* Text Main */
  border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  box-shadow: 0 0 15px #4FA8FF; /* Glow */
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: #F3F8FF; /* Text Main */
  border: 2px solid #2B73F6;
}

.page-gdpr__btn-secondary:hover {
  background: rgba(43, 115, 246, 0.2);
  color: #4FA8FF; /* Glow */
  box-shadow: 0 0 15px rgba(43, 115, 246, 0.5);
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #1B3357; /* Divider */
}

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

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__subtitle {
  font-size: 1.6em;
  color: #F3F8FF; /* Text Main */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #AFC4E8; /* Text Secondary */
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-width: 800px;
}

.page-gdpr__rights-list,
.page-gdpr__data-list,
.page-gdpr__security-list,
.page-gdpr__process-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-gdpr__rights-item,
.page-gdpr__data-item,
.page-gdpr__security-item,
.page-gdpr__process-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  color: #AFC4E8; /* Text Secondary */
}

.page-gdpr__rights-title,
.page-gdpr__security-heading {
  font-size: 1.4em;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__rights-description,
.page-gdpr__security-description {
  font-size: 1em;
  line-height: 1.5;
}

.page-gdpr__data-item strong {
  color: #F3F8FF; /* Text Main */
}

.page-gdpr__contact-info {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-gdpr__contact-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 8px;
  padding: 30px;
  flex: 1;
  min-width: 300px;
  text-align: center;
  color: #AFC4E8; /* Text Secondary */
}

.page-gdpr__contact-heading {
  font-size: 1.5em;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__contact-text {
  font-size: 1em;
  margin-bottom: 20px;
}

.page-gdpr__contact-link {
  color: #4FA8FF; /* Glow */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: #F2C14E; /* Gold */
  text-decoration: underline;
}

.page-gdpr__inline-link {
  color: #4FA8FF; /* Glow */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__inline-link:hover {
  color: #F2C14E; /* Gold */
}

.page-gdpr__process-list {
  counter-reset: gdpr-process;
}

.page-gdpr__process-item {
  position: relative;
  padding-left: 40px;
}

.page-gdpr__process-item::before {
  counter-increment: gdpr-process;
  content: counter(gdpr-process);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #2B73F6;
  color: #F3F8FF;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

/* --- Responsive Styles --- */

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-gdpr__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles --header-offset */
    padding-bottom: 30px;
  }

  .page-gdpr__hero-image {
    object-fit: contain; /* Ensure mobile hero image is not cropped */
    max-height: none;
    aspect-ratio: unset;
  }

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

  .page-gdpr__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 10px;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__section {
    padding: 40px 0;
  }

  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-gdpr__subtitle {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-gdpr__text-block {
    font-size: 1em;
    margin-bottom: 15px;
  }

  .page-gdpr__content-image {
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__rights-item,
  .page-gdpr__data-item,
  .page-gdpr__security-item,
  .page-gdpr__process-item {
    padding: 20px;
    margin-bottom: 15px;
  }

  .page-gdpr__rights-title,
  .page-gdpr__security-heading {
    font-size: 1.2em;
    margin-bottom: 8px;
  }

  .page-gdpr__contact-info {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .page-gdpr__contact-item {
    min-width: unset;
    padding: 25px;
  }

  .page-gdpr__contact-heading {
    font-size: 1.3em;
    margin-bottom: 10px;
  }

  .page-gdpr__process-item {
    padding-left: 35px;
  }

  .page-gdpr__process-item::before {
    width: 28px;
    height: 28px;
    font-size: 0.85em;
  }

  /* General image responsiveness for all content images */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
}