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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles header offset, small padding-top for visual */
  background-color: var(--background-color);
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  max-height: 500px; /* Limit height for hero image */
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
}

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: var(--background-color);
}

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

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

.page-gdpr__sub-title {
  font-size: 1.6em;
  color: var(--text-main);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__text-block {
  font-size: 1.05em;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__text-block a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-gdpr__text-block a:hover {
  color: var(--glow-color);
}

.page-gdpr__list,
.page-gdpr__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-gdpr__ordered-list {
  list-style-type: decimal;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: var(--text-secondary);
}

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

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

/* FAQ Section */
.page-gdpr__faq-list {
  margin-top: 40px;
}

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: var(--text-main);
  font-size: 1.15em;
  font-weight: bold;
  background-color: var(--card-bg);
  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-color);
}

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

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

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

/* --- Color Contrast & Theming --- */
.page-gdpr {
  background-color: #08160F; /* Background color from custom palette */
  color: #F2FFF6; /* Main text color for dark background */
}

.page-gdpr__section-title, .page-gdpr__main-title, .page-gdpr__sub-title,
.page-gdpr__list-item strong,
.page-gdpr__faq-question {
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__hero-description, .page-gdpr__text-block, .page-gdpr__list-item,
.page-gdpr__faq-answer {
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__faq-item {
  background-color: #11271B; /* Card BG */
  border-color: #2E7A4E; /* Border color */
}

.page-gdpr__faq-question {
  background-color: #11271B; /* Card BG */
}

.page-gdpr__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-gdpr__faq-toggle {
  color: #57E38D; /* Glow color */
}

.page-gdpr a {
  color: #57E38D; /* Glow color for links */
}

.page-gdpr a:hover {
  color: #F2C14E; /* Gold color on hover */
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-gdpr__hero-image {
    max-height: 400px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.8em, 5vw, 2.8em);
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-gdpr__hero-image {
    max-height: 300px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.6em, 6vw, 2.5em);
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .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: 12px 20px;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__sub-title {
    font-size: 1.4em;
  }
  .page-gdpr__text-block,
  .page-gdpr__list-item,
  .page-gdpr__faq-question,
  .page-gdpr__faq-answer {
    font-size: 0.95em;
  }
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__container,
  .page-gdpr__hero-content,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__faq-question {
    padding: 15px 20px;
  }
  .page-gdpr__faq-answer {
    padding: 0 20px 15px 20px;
  }
}