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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small decorative top padding, body handles --header-offset */
  overflow: hidden;
  background-color: var(--Deep-Green, #0A4B2C);
}

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

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

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

.page-gdpr__main-title {
  color: var(--Gold, #F2C14E);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-gdpr__description {
  color: var(--Text-Main, #F2FFF6);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-gdpr__text-block {
  color: var(--Text-Main, #F2FFF6);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

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

.page-gdpr__card {
  background-color: var(--Card-B-G, #11271B);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--Border, #2E7A4E);
  color: var(--Text-Main, #F2FFF6);
}

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

.page-gdpr__card-title {
  color: var(--Text-Main, #F2FFF6);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--Divider, #1E3A2A);
  padding-bottom: 10px;
}

.page-gdpr__card-text {
  color: var(--Text-Secondary, #A7D9B8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__rights-list li {
  background-color: var(--Card-B-G, #11271B);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border-left: 5px solid var(--Glow, #57E38D);
}

.page-gdpr__list-item-title {
  color: var(--Text-Main, #F2FFF6);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-gdpr__list-item-text {
  color: var(--Text-Secondary, #A7D9B8);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.page-gdpr__contact-section {
  text-align: center;
  padding: 40px 20px;
}

.page-gdpr__contact-details {
  background-color: var(--Card-B-G, #11271B);
  border-radius: 12px;
  padding: 30px;
  max-width: 700px;
  margin: 30px auto 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--Border, #2E7A4E);
}

.page-gdpr__contact-text {
  color: var(--Text-Main, #F2FFF6);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
}

.page-gdpr__contact-list li {
  margin-bottom: 10px;
}

.page-gdpr__contact-link {
  color: var(--Glow, #57E38D);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: var(--Gold, #F2C14E);
  text-decoration: underline;
}

.page-gdpr__conclusion-section {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--Deep-Green, #0A4B2C);
  margin-top: 40px;
}

/* Ensure all images maintain original color */
.page-gdpr img {
  filter: none; /* No CSS filters to change color */
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles --header-offset */
  }

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

  .page-gdpr__description {
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  }

  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

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

  .page-gdpr__text-block {
    font-size: 1rem;
  }

  .page-gdpr__principles-grid, .page-gdpr__sharing-grid, .page-gdpr__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__card-title {
    font-size: 1.3rem;
  }

  .page-gdpr__list-item-title {
    font-size: 1.2rem;
  }

  .page-gdpr__rights-list li {
    padding: 20px;
    margin-bottom: 15px;
  }

  .page-gdpr__contact-details {
    padding: 20px;
  }

  /* Mobile image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Ensure content area does not cause horizontal scroll */
  .page-gdpr__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
}

/* General text/background contrast for dark theme */
.page-gdpr h1, .page-gdpr h2, .page-gdpr h3, .page-gdpr h4, .page-gdpr h5, .page-gdpr h6 {
  color: var(--Text-Main, #F2FFF6);
}

.page-gdpr p, .page-gdpr li, .page-gdpr a {
  color: var(--Text-Secondary, #A7D9B8);
}

.page-gdpr__main-title, .page-gdpr__section-title {
  color: var(--Gold, #F2C14E);
}

.page-gdpr__cta-button {
  color: #ffffff;
}

.page-gdpr__contact-link {
  color: var(--Glow, #57E38D);
}

.page-gdpr__dark-section {
  background-color: var(--Deep-Green, #0A4B2C);
  color: var(--Text-Main, #F2FFF6);
}

/* Ensure minimum image size for content area */
.page-gdpr img {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-gdpr__hero-image {
    min-width: 200px !important;
    min-height: 200px !important;
  }
}