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

  background-color: var(--background-color);
  color: var(--text-secondary-color); /* Default text color for the page */
  font-family: Arial, sans-serif; /* Example font */
  line-height: 1.6;
}

.page-gdpr h1,
.page-gdpr h2,
.page-gdpr h3,
.page-gdpr h4,
.page-gdpr h5,
.page-gdpr h6 {
  color: var(--text-main-color);
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more at bottom */
  background-color: var(--deep-green-color); /* Deep Green from palette for hero background */
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto; /* Ensure image scales */
  display: block;
  object-fit: cover;
  margin-bottom: 30px; /* Space between image and content */
}

.page-gdpr__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  color: var(--text-main-color);
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main-color);
  /* No fixed font-size for H1, rely on weight/line-height for hierarchy as per rule */
}

.page-gdpr__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary-color);
}

.page-gdpr__introduction-section,
.page-gdpr__principles-section,
.page-gdpr__rights-section,
.page-gdpr__security-section,
.page-gdpr__cookie-section,
.page-gdpr__contact-section,
.page-gdpr__faq-section,
.page-gdpr__conclusion-section {
  padding: 60px 0;
  background-color: var(--background-color);
}

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

.page-gdpr__container {
  width: 100%; /* Important for desktop width as per requirement */
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px; /* Add horizontal padding for content */
  box-sizing: border-box;
}

.page-gdpr__container p,
.page-gdpr__container li {
  color: var(--text-secondary-color);
  line-height: 1.7;
  margin-bottom: 15px;
}

.page-gdpr__container strong {
  color: var(--text-main-color);
}

.page-gdpr__container a:not([class*="btn"]) { /* Exclude buttons */
  color: var(--glow-color); /* Use glow color for standard links */
  text-decoration: underline;
}
.page-gdpr__container a:not([class*="btn"]):hover {
  color: var(--text-main-color);
  text-decoration: none;
}

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

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: var(--text-secondary-color);
  border: 2px solid var(--border-color);
}

.page-gdpr__btn-secondary:hover {
  background-color: rgba(46, 122, 78, 0.2);
  color: var(--text-main-color);
  transform: translateY(-2px);
}

.page-gdpr__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

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

.page-gdpr__list h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: var(--text-main-color);
}

/* FAQ styles */
.page-gdpr__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-secondary-color);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--text-main-color);
  background-color: var(--deep-green-color);
}

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

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  background-color: var(--divider-color);
}

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

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

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

.page-gdpr__faq-answer {
  padding: 0 20px 20px;
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--text-secondary-color);
}

/* Copyright section */
.page-gdpr__copyright {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
  color: var(--text-secondary-color);
  background-color: var(--background-color);
  border-top: 1px solid var(--divider-color);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 10px 15px 40px;
  }

  .page-gdpr__main-title {
    font-size: 1.8em; /* Adjust for mobile */
  }

  .page-gdpr__description {
    font-size: 1em;
  }

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

  .page-gdpr__container {
    padding: 0 15px;
  }

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

  /* Containers for images/content */
  .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;
  }
  
  /* Buttons */
  .page-gdpr__cta-buttons {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 15px;
    padding: 0 15px; /* Add padding to button group */
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

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