.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default text color for dark background */
  background-color: var(--bg-color, #08160F); /* Assume body bg is dark */
}

/* Sections and Containers */
.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider, #1E3A2A);
}

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

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom */
  overflow: hidden;
  background-color: var(--deep-green, #0A4B2C); /* Use a brand color for hero background */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* To match requested image size */
  margin-bottom: 30px; /* Space between image and content */
}

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

.page-gdpr__hero-content {
  position: relative; /* Not absolute, to allow "image above text" */
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  color: var(--text-main, #F2FFF6);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

/* General Titles */
.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--text-main, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__principle-title,
.page-gdpr__right-title,
.page-gdpr__security-title,
.page-gdpr__consent-title,
.page-gdpr__contact-title {
  font-size: 1.8em;
  color: var(--gold, #F2C14E);
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left; /* Align sub-titles left */
}

/* Text Blocks */
.page-gdpr__text-block,
.page-gdpr__principle-description,
.page-gdpr__right-description,
.page-gdpr__security-description,
.page-gdpr__consent-description,
.page-gdpr__contact-description {
  font-size: 1em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
  text-align: left;
}

/* Image wrappers within content */
.page-gdpr__image-wrapper {
  margin: 40px auto;
  max-width: 1000px; /* Adjust based on image purpose */
}

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

/* Lists */
.page-gdpr__principles-list,
.page-gdpr__rights-list,
.page-gdpr__security-features,
.page-gdpr__consent-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__principle-item,
.page-gdpr__right-item,
.page-gdpr__security-item,
.page-gdpr__consent-item {
  background-color: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.page-gdpr__principle-item:hover,
.page-gdpr__right-item:hover,
.page-gdpr__security-item:hover,
.page-gdpr__consent-item:hover {
  transform: translateY(-5px);
}

/* CTA Button */
.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%; /* For responsive buttons */
  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(-2px);
}

.page-gdpr__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Inline links */
.page-gdpr__inline-link {
  color: var(--glow, #57E38D); /* Use glow color for inline links */
  text-decoration: underline;
}

.page-gdpr__inline-link:hover {
  color: var(--gold, #F2C14E);
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__principle-title,
  .page-gdpr__right-title,
  .page-gdpr__security-title,
  .page-gdpr__consent-title,
  .page-gdpr__contact-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 10px; /* Small padding, as body handles header offset */
    padding-bottom: 40px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em); /* Adjust clamp for mobile */
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr__principle-title,
  .page-gdpr__right-title,
  .page-gdpr__security-title,
  .page-gdpr__consent-title,
  .page-gdpr__contact-title {
    font-size: 1.3em;
  }
  .page-gdpr__principles-list,
  .page-gdpr__rights-list,
  .page-gdpr__security-features,
  .page-gdpr__consent-info {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 20px;
  }
  .page-gdpr__principle-item,
  .page-gdpr__right-item,
  .page-gdpr__security-item,
  .page-gdpr__consent-item {
    padding: 20px;
  }

  /* Responsive images */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__image-wrapper,
  .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 no overflow */
  }

  /* Responsive buttons */
  .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-left: 15px;
    padding-right: 15px;
  }
}