.page-gdpr {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  background: rgba(17, 39, 27, 0.7); /* Card BG with transparency for overlay effect */
  border-radius: 10px;
  margin-top: 100px; /* Adjust to ensure content is below image */
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-gdpr__section-title {
  color: #57E38D; /* Glow */
  font-size: 2.2em;
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr h2 + p {
  margin-top: -15px;
}

.page-gdpr h3 {
  color: #F2FFF6; /* Text Main */
  font-size: 1.6em;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-gdpr p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

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

.page-gdpr__card {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-gdpr__card-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-gdpr__card-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-top: 20px;
  display: block;
}

.page-gdpr__image-text-block,
.page-gdpr__image-right-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-gdpr__image-left,
.page-gdpr__image-right {
  flex: 1;
  min-width: 300px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.page-gdpr__image-left {
  order: 1;
}

.page-gdpr__image-right {
  order: 2;
}

.page-gdpr__image-text-block ul,
.page-gdpr__image-right-block ul {
  flex: 1;
  min-width: 300px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.page-gdpr__list li {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-gdpr__list li::before {
  content: '✔';
  color: #22C768; /* Auxiliary color */
  position: absolute;
  left: 0;
  top: 0;
}

.page-gdpr__image-right-block p {
  flex-basis: 100%;
}

.page-gdpr__contact-info {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin-top: 50px;
}

.page-gdpr__contact-info p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1em;
  margin-bottom: 15px;
}

.page-gdpr__contact-info a {
  color: #2AD16F; /* Button gradient start color */
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-info a:hover {
  text-decoration: underline;
}

.page-gdpr__image-center {
  display: block;
  margin: 30px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-gdpr__last-updated {
  text-align: right;
  font-style: italic;
  color: #A7D9B8; /* Text Secondary */
  margin-top: 50px;
  font-size: 0.9em;
}

.page-gdpr a {
  color: #22C768; /* Auxiliary color for links */
  text-decoration: none;
}

.page-gdpr a:hover {
  text-decoration: underline;
}

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

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

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

  .page-gdpr__card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

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

  .page-gdpr__hero-content {
    margin-top: 30px;
    padding: 20px 10px;
  }

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

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

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

  .page-gdpr h3 {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-gdpr__content-area {
    padding: 30px 15px;
  }

  .page-gdpr__card-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-gdpr__image-text-block,
  .page-gdpr__image-right-block {
    flex-direction: column;
    gap: 20px;
  }

  .page-gdpr__image-left,
  .page-gdpr__image-right {
    order: unset;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__image-text-block ul,
  .page-gdpr__image-right-block ul {
    width: 100%;
    padding-left: 20px;
  }

  .page-gdpr__card,
  .page-gdpr__contact-info {
    padding: 20px;
  }

  /* Mobile image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__hero-section,
  .page-gdpr__content-area,
  .page-gdpr__card-grid,
  .page-gdpr__card,
  .page-gdpr__image-text-block,
  .page-gdpr__image-right-block,
  .page-gdpr__contact-info,
  .page-gdpr__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-gdpr__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-gdpr__image-center {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}