:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for dark background */
  background-color: var(--background-color); /* Page background */
}

.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 top padding, body handles --header-offset */
  overflow: hidden;
  background-color: var(--card-bg);
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

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

.page-gdpr__hero-content {
  max-width: 800px;
  z-index: 1;
  color: var(--text-main);
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-gdpr__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-gdpr__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* Forced white text for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 15px;
}

.page-gdpr__btn-secondary:hover {
  background: rgba(var(--primary-color), 0.1);
  color: var(--gold-color);
  border-color: var(--gold-color);
}

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

.page-gdpr__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
}

.page-gdpr__dark-section {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-gdpr__content-area p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

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

.page-gdpr__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
}

.page-gdpr__card--principle {
  background-color: var(--deep-green);
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-gdpr__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-gdpr__card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

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

.page-gdpr__sub-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-color);
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr__list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-gdpr__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: var(--text-main);
}

.page-gdpr__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.page-gdpr__list li strong {
  color: var(--gold-color);
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__image--centered {
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__security-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.page-gdpr__security-list li::before {
  content: '🛡️'; /* Shield emoji */
  position: absolute;
  left: 0;
  font-size: 1.3rem;
  line-height: 1;
}

.page-gdpr__security-list li strong {
  color: var(--text-main);
}

.page-gdpr__btn-primary--center {
  display: block;
  margin: 40px auto 0 auto;
  width: fit-content;
}

.page-gdpr__contact-info {
  background-color: var(--deep-green);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  margin-top: 30px;
  color: var(--text-main);
}

.page-gdpr__contact-info p {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.page-gdpr__contact-link {
  color: var(--gold-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: var(--glow-color);
}

.page-gdpr__faq-section {
  padding: 60px 20px;
  background-color: var(--background-color);
  color: var(--text-main);
}

.page-gdpr__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-gdpr__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  background-color: var(--deep-green);
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: var(--primary-color);
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: '−';
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-answer {
  max-height: 500px; /* Adjust as needed for content length */
  padding-top: 15px;
}

/* Details element specific styling to hide default marker */
.page-gdpr__faq-item summary {
  list-style: none;
}

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

.page-gdpr__cta-section {
  text-align: center;
  padding: 60px 20px;
}

.page-gdpr__cta-section p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Ensure content images are not too small */
.page-gdpr img:not(.page-gdpr__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* Color contrast safety for light background sections */
.page-gdpr__light-bg p,
.page-gdpr__light-bg li,
.page-gdpr__light-bg a {
  color: #333333; /* Ensure dark text on light background */
}

.page-gdpr__light-bg .page-gdpr__section-title,
.page-gdpr__light-bg .page-gdpr__card-title {
  color: var(--primary-color); /* Can use brand color if contrast is good */
}

/* Color contrast safety for dark background sections */
.page-gdpr__dark-section p,
.page-gdpr__dark-section li,
.page-gdpr__dark-section a {
  color: var(--text-secondary); /* Ensure light text on dark background */
}

.page-gdpr__dark-section .page-gdpr__section-title,
.page-gdpr__dark-section .page-gdpr__card-title {
  color: var(--gold-color); /* Can use brand gold color */
}

.page-gdpr__contact-info .page-gdpr__list li strong {
  color: var(--gold-color);
}

.page-gdpr__contact-info a {
  color: var(--gold-color);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-gdpr__principles-grid,
  .page-gdpr__rights-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-gdpr__data-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-gdpr__intro-text {
    font-size: 1rem;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    margin-left: 0 !important;
  }
  .page-gdpr__btn-secondary {
    margin-top: 15px;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__content-area,
  .page-gdpr__faq-section {
    padding: 40px 15px;
  }
  .page-gdpr__section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .page-gdpr__principles-grid,
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__card {
    padding: 25px;
  }
  .page-gdpr__card-title {
    font-size: 1.25rem;
  }
  .page-gdpr__data-info-grid {
    gap: 30px;
  }
  .page-gdpr__sub-title {
    font-size: 1.4rem;
  }
  .page-gdpr__list li,
  .page-gdpr__security-list li {
    font-size: 0.95rem;
  }
  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__faq-question {
    font-size: 1rem;
    padding: 18px 20px;
  }
  .page-gdpr__faq-answer {
    font-size: 0.9rem;
    padding: 0 20px 15px;
  }
  .page-gdpr__cta-section {
    padding: 40px 15px;
  }
}