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

.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;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #08160F 0%, #11271B 100%); /* Deep Green background */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-width: 1200px; /* Limit image width to container for better aspect ratio */
  border-radius: 10px;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.page-gdpr__main-title {
  color: var(--text-main);
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__description {
  color: var(--text-secondary);
  font-size: clamp(1em, 1.5vw, 1.2em);
  margin-bottom: 30px;
}

/* General Section Styling */
.page-gdpr__content-section {
  padding: 60px 0;
}

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

.page-gdpr__light-bg {
  background-color: #f8f8f8; /* A very light background to contrast with dark sections */
  color: #333333; /* Dark text on light background */
}

.page-gdpr__light-bg .page-gdpr__section-title,
.page-gdpr__light-bg .page-gdpr__sub-title {
  color: #000000; /* Ensure dark titles on light background */
}

.page-gdpr__light-bg .page-gdpr__link {
  color: var(--deep-green); /* Use a darker green for links on light background */
}

.page-gdpr__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-gdpr__dark-bg .page-gdpr__section-title {
  color: var(--text-main);
}

.page-gdpr__text-block {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__sub-title {
  font-size: clamp(1.4em, 2.2vw, 1.8em);
  color: var(--text-main);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__dark-bg .page-gdpr__sub-title {
  color: var(--text-main);
}

.page-gdpr p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.7;
}

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

.page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.6;
}

.page-gdpr__link {
  color: var(--glow); /* Lighter green for links on dark background */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: var(--gold);
}

/* Buttons */
.page-gdpr__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__btn-primary--large {
  padding: 16px 35px;
  font-size: 1.2em;
  margin-top: 30px;
}

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

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

.page-gdpr__image--right {
  float: right;
  margin-left: 20px;
  max-width: 50%; /* Adjust for text wrapping */
}

.page-gdpr__text-block::after {
  content: '';
  display: table;
  clear: both;
}

/* FAQ Section */
.page-gdpr__faq-section {
  padding: 60px 0;
  background-color: var(--card-bg);
  color: var(--text-main);
}

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

.page-gdpr__faq-item {
  background-color: var(--background); /* Slightly darker for contrast */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
}

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

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

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

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  color: var(--gold);
}

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

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

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

.page-gdpr__faq-item summary {
  list-style: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-image-wrapper {
    max-height: 400px;
  }

  .page-gdpr__image--right {
    float: none;
    margin: 30px auto;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-gdpr__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-gdpr__hero-image-wrapper {
    max-height: 300px;
    margin-bottom: 20px;
  }

  .page-gdpr__hero-content {
    padding: 0 15px;
  }

  .page-gdpr__main-title {
    font-size: 2em; /* Adjusted for mobile */
    margin-bottom: 15px;
  }

  .page-gdpr__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-gdpr__content-section,
  .page-gdpr__faq-section {
    padding: 40px 0;
  }

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

  .page-gdpr__sub-title {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-gdpr p,
  .page-gdpr__list li {
    font-size: 1em;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-primary--large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 14px 20px;
    font-size: 1em;
    margin-top: 15px;
  }

  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 20px auto !important;
  }

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

  .page-gdpr__faq-answer {
    padding: 0 20px 15px 20px;
  }
  
  .page-gdpr__hero-section .page-gdpr__btn-primary {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-gdpr__text-block .page-gdpr__btn-primary {
    padding-left: 15px;
    padding-right: 15px;
  }
}

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

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

.page-gdpr__dark-bg .page-gdpr__section-title,
.page-gdpr__dark-bg .page-gdpr__sub-title,
.page-gdpr__dark-bg p,
.page-gdpr__dark-bg li {
  color: var(--text-main);
}

.page-gdpr__light-bg {
  background-color: #f8f8f8; /* Use a very light background to ensure contrast */
  color: #333333; /* Dark text on light background */
}

.page-gdpr__light-bg .page-gdpr__section-title,
.page-gdpr__light-bg .page-gdpr__sub-title,
.page-gdpr__light-bg p,
.page-gdpr__light-bg li {
  color: #333333;
}

.page-gdpr__light-bg .page-gdpr__link {
  color: var(--deep-green); /* Darker green for links on light background */
}

.page-gdpr__faq-item {
  background-color: var(--card-bg);
}

.page-gdpr__faq-question {
  color: var(--text-main);
}

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

.page-gdpr__faq-toggle {
  color: var(--glow);
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  color: var(--gold);
}

.page-gdpr__faq-answer {
  color: var(--text-secondary);
}