.page-data-protection {
  background-color: #08160F; /* Background color from custom palette */
  color: #F2FFF6; /* Main text color from custom palette, contrasting with dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-data-protection__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 */
  background-color: #11271B; /* Card BG color for hero section */
  overflow: hidden; /* Ensure no overflow */
}

.page-data-protection__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

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

.page-data-protection__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: #F2FFF6;
  padding: 20px;
}

.page-data-protection__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-data-protection__subtitle {
  font-size: clamp(1em, 1.5vw, 1.3em);
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
}

.page-data-protection__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main for button text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  max-width: 100%; /* Responsive button */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-data-protection__cta-button--wide {
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
}

.page-data-protection__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

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

.page-data-protection__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #F2C14E; /* Gold color for section titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-data-protection__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  color: #57E38D; /* Glow color for sub-titles */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-data-protection__text-block {
  font-size: 1em;
  color: #F2FFF6; /* Main text color */
  margin-bottom: 20px;
}

.page-data-protection__dark-section {
  background-color: #11271B; /* Card BG color for dark sections */
  color: #F2FFF6; /* Main text color */
}

.page-data-protection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-data-protection__grid--usage {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-data-protection__card {
  background-color: #0A4B2C; /* Deep Green for cards */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6; /* Main text color for card content */
}

.page-data-protection__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-data-protection__card-title {
  font-size: 1.3em;
  color: #F2C14E; /* Gold color for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-data-protection__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Main text color for list items */
}

.page-data-protection__list li {
  margin-bottom: 10px;
  color: #F2FFF6; /* Main text color */
}

.page-data-protection__list li strong {
  color: #57E38D; /* Glow color for strong text in lists */
}

.page-data-protection__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
  max-width: 800px; /* Example max width for content images */
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

/* FAQ Section */
.page-data-protection__faq-list {
  margin-top: 30px;
}

.page-data-protection__faq-item {
  background-color: #0A4B2C; /* Deep Green for FAQ items */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-data-protection__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #F2C14E; /* Gold color for FAQ questions */
  transition: background-color 0.3s ease;
  list-style: none; /* For <summary> tag */
}

.page-data-protection__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for <summary> */
}

.page-data-protection__faq-question:hover {
  background-color: #1E3A2A; /* Divider color on hover */
}

.page-data-protection__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow color for toggle icon */
}

.page-data-protection__faq-item[open] .page-data-protection__faq-answer {
  max-height: 500px; /* Adjust as needed for content length */
  padding: 10px 25px 20px;
  transition: max-height 0.3s ease-in, padding 0.3s ease-in;
}

.page-data-protection__faq-item:not([open]) .page-data-protection__faq-answer {
  max-height: 0;
  padding: 0 25px;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-data-protection__faq-item[open] .page-data-protection__faq-toggle {
  content: "−"; /* Change to minus when open */
}

/* Links */
.page-data-protection a {
  color: #57E38D; /* Glow color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* General text contrast fix for any potential issues */
.page-data-protection p,
.page-data-protection li,
.page-data-protection__card p {
  color: #F2FFF6; /* Ensure main text color */
}

.page-data-protection__dark-bg {
  color: #ffffff; /* Deep Green background is dark, use white text */
  background: #0A4B2C;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-data-protection__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-data-protection__main-title {
    font-size: 2.2em;
  }

  .page-data-protection__subtitle {
    font-size: 1em;
  }

  .page-data-protection__container {
    padding: 20px 15px;
  }

  .page-data-protection__section-title {
    font-size: 1.8em;
  }

  .page-data-protection__sub-title {
    font-size: 1.2em;
  }

  .page-data-protection__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  .page-data-protection__hero-image {
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-data-protection__image {
    min-width: 200px !important;
    min-height: 200px !important;
  }

  /* Buttons responsive */
  .page-data-protection__cta-button,
  .page-data-protection__btn-primary,
  .page-data-protection__btn-secondary,
  .page-data-protection a[class*="button"],
  .page-data-protection a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-data-protection__cta-buttons,
  .page-data-protection__button-group,
  .page-data-protection__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-data-protection__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  /* Content area overflow fix */
  .page-data-protection__intro-section,
  .page-data-protection__principles-section,
  .page-data-protection__data-types-section,
  .page-data-protection__data-usage-section,
  .page-data-protection__sharing-section,
  .page-data-protection__security-section,
  .page-data-protection__rights-section,
  .page-data-protection__cookies-section,
  .page-data-protection__changes-section,
  .page-data-protection__contact-section,
  .page-data-protection__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  .page-data-protection__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-data-protection__faq-answer {
    padding: 0 20px 15px;
  }
}