.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default text color for light text on dark background */
  background-color: var(--bg-color, #08160F); /* Assume shared.css provides --bg-color, else use default dark */
}

/* --- Hero Section --- */
.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom */
  text-align: center;
  overflow: hidden; /* Ensure no overflow */
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  min-height: 400px; /* Ensure image is not too small */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  margin-top: 150px; /* Push content down to be below the image on desktop */
  box-sizing: border-box;
}

.page-gdpr__main-title {
  font-size: 2.8em;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
}

/* --- General Section Styling --- */
.page-gdpr__section {
  padding: 60px 20px;
  background-color: var(--bg-color, #08160F);
  border-bottom: 1px solid var(--divider, #1E3A2A);
}

.page-gdpr__dark-section {
  background-color: var(--card-bg, #11271B); /* Darker background for contrast */
}

.page-gdpr__container {
  width: 100%; /* Ensure width 100% for desktop for flex/grid items */
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: var(--text-main, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__text-block strong {
  color: var(--text-main, #F2FFF6);
}

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

/* --- Card Styling --- */
.page-gdpr__card {
  background-color: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color, #2E7A4E);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__card-text {
  color: var(--text-secondary, #A7D9B8);
  font-size: 1em;
}

/* --- List Styling --- */
.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-gdpr__list-item {
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-gdpr__list-item strong {
  color: var(--text-main, #F2FFF6);
}

.page-gdpr__list-item::before {
  content: '✓';
  color: var(--main-color, #11A84E); /* Use main brand color for bullet */
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* --- Image in Content --- */
.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
  object-fit: cover;
}

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

.page-gdpr__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__cta-button--bottom {
  margin-top: 40px;
}

/* --- Link Styling --- */
.page-gdpr__link {
  color: var(--secondary-color, #22C768); /* Use secondary brand color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: var(--glow, #57E38D);
  text-decoration: underline;
}

/* --- FAQ Section --- */
.page-gdpr__faq-list {
  margin-top: 30px;
}

.page-gdpr__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  cursor: pointer;
  background-color: var(--card-bg, #11271B);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-gdpr__faq-question:hover {
  background-color: var(--deep-green, #0A4B2C);
}

.page-gdpr__faq-question::-webkit-details-marker {
  display: none;
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--secondary-color, #22C768);
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: var(--text-secondary, #A7D9B8);
  /* Max-height and overflow are handled by the browser for <details> */
}

.page-gdpr__faq-answer p {
  margin-bottom: 0;
}

/* --- Contact List --- */
.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-gdpr__contact-item {
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-gdpr__contact-item::before {
  content: '📧'; /* Emoji for contact */
  position: absolute;
  left: 0;
}

.page-gdpr__contact-item a {
  color: var(--secondary-color, #22C768);
  text-decoration: none;
}

.page-gdpr__contact-item a:hover {
  color: var(--glow, #57E38D);
  text-decoration: underline;
}

/* --- Responsive Styles (Mobile) --- */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 10px !important; /* Small top padding */
    padding-bottom: 40px !important;
  }

  .page-gdpr__hero-image {
    min-height: 300px !important;
  }

  .page-gdpr__hero-content {
    margin-top: 100px !important; /* Adjust for smaller screens */
    padding: 20px !important;
    max-width: 100% !important;
  }

  .page-gdpr__main-title {
    font-size: 2em !important;
  }

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

  .page-gdpr__section {
    padding: 40px 15px !important; /* Adjust padding for mobile */
  }

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

  .page-gdpr__text-block {
    font-size: 1em !important;
  }

  .page-gdpr__grid {
    grid-template-columns: 1fr !important; /* Single column on mobile */
    gap: 20px !important;
  }

  .page-gdpr__card {
    padding: 20px !important;
  }

  .page-gdpr__card-title {
    font-size: 1.3em !important;
  }

  .page-gdpr__list-item {
    padding-left: 20px !important;
  }

  .page-gdpr__list-item::before {
    left: -5px !important; /* Adjust bullet position */
  }

  /* Force responsive images */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Ensure minimum size */
    min-height: 200px !important; /* Ensure minimum size */
  }

  /* Image/Content containers */
  .page-gdpr__section,
  .page-gdpr__container,
  .page-gdpr__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* CTA Buttons responsive */
  .page-gdpr__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }

  /* FAQ responsive */
  .page-gdpr__faq-question {
    font-size: 1.1em !important;
    padding: 15px 20px !important;
  }

  .page-gdpr__faq-answer {
    padding: 0 20px 15px 20px !important;
  }
}