.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Light body background #f9f9f9, so dark text */
  background-color: #f9f9f9; /* Default body background from shared.css */
}

/* Base section styling */
.page-gdpr__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-gdpr__light-bg {
  background-color: #f9f9f9; /* Body background */
  color: #333333;
}

.page-gdpr__dark-bg {
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Main text color for dark background */
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #08160F; /* Dark background for hero */
  overflow: hidden;
}

.page-gdpr__hero-content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
  color: #F2FFF6;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2FFF6;
  line-height: 1.2;
}

.page-gdpr__main-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Secondary text color */
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__hero-image {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: cover;
  margin-top: 20px;
  border-radius: 8px;
}

/* Section Titles */
.page-gdpr__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: bold;
  margin-bottom: 30px;
  color: inherit; /* Inherits from section background */
}

/* Text blocks */
.page-gdpr__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* Content Images */
.page-gdpr__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__principle-card {
  background-color: #11271B; /* Card BG color */
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
  color: #F2FFF6;
}

.page-gdpr__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #57E38D; /* Glow color for titles */
}

.page-gdpr__principle-card p {
  font-size: 1rem;
  color: #A7D9B8; /* Secondary text color */
}

/* FAQ/Rights List */
.page-gdpr__rights-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.page-gdpr__faq-item summary {
  list-style: none; /* Remove default marker */
}

.page-gdpr__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for webkit browsers */
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #F5F5F5;
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: #ECECEC;
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #11A84E; /* Main brand color */
  transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg); /* Rotate for 'x' effect */
}

.page-gdpr__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #555555;
  border-top: 1px solid #E0E0E0;
}

/* Security List */
.page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-gdpr__security-item {
  background-color: #11271B; /* Card BG color */
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #2E7A4E;
}

.page-gdpr__list-heading {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #57E38D; /* Glow color */
}

.page-gdpr__security-item p {
  font-size: 1rem;
  color: #A7D9B8; /* Secondary text color */
}

.page-gdpr__link {
  color: #57E38D; /* Use glow color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

/* Contact Info */
.page-gdpr__contact-info {
  margin-top: 30px;
  font-size: 1.1rem;
  color: #333333;
}

.page-gdpr__contact-links {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-gdpr__contact-links li {
  margin: 0;
}

/* CTA Button */
.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

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

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

.page-gdpr__final-cta {
  padding-bottom: 80px;
}

.page-gdpr__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gdpr__hero-content-wrapper {
    max-width: 700px;
  }
  .page-gdpr__principles-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr__section {
    padding: 40px 15px;
  }

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

  .page-gdpr__main-title {
    font-size: 2rem;
  }

  .page-gdpr__main-description {
    font-size: 1rem;
  }

  .page-gdpr__section-title {
    font-size: 1.8rem;
  }

  .page-gdpr__principle-card {
    padding: 20px;
  }

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

  .page-gdpr__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

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

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

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

  .page-gdpr__cta-button--large {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

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

  /* Ensure containers with images are also responsive */
  .page-gdpr__hero-section,
  .page-gdpr__section,
  .page-gdpr__principle-card,
  .page-gdpr__faq-item,
  .page-gdpr__security-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-gdpr__contact-links {
    flex-direction: column;
    gap: 10px;
  }
}