.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #f8f9fa; /* A very light background for contrast */
}

.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 */
  color: #F3F8FF; /* Text Main for dark background */
  overflow: hidden;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 5vw, 3em);
  margin-bottom: 15px;
  color: #F3F8FF;
  font-weight: bold;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #AFC4E8; /* Text Secondary */
}

.page-gdpr__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #113B7A; /* Main brand color */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-gdpr__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
  color: #333333;
}

.page-gdpr__text-block a {
  color: #1D5FD1;
  text-decoration: underline;
}

.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.1);
}

.page-gdpr__principles-list, .page-gdpr__rights-list, .page-gdpr__compliance-list, .page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__principles-item, .page-gdpr__rights-item, .page-gdpr__compliance-item, .page-gdpr__security-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-left: 5px solid #1D5FD1; /* Accent color for emphasis */
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__principles-heading, .page-gdpr__compliance-heading, .page-gdpr__security-heading {
  font-size: 1.4em;
  color: #113B7A;
  margin-bottom: 10px;
}

.page-gdpr__rights-item strong {
  color: #113B7A;
}

.page-gdpr__dark-bg {
  background-color: #10233F; /* Card B G */
  color: #F3F8FF; /* Text Main */
}

.page-gdpr__dark-bg .page-gdpr__section-title,
.page-gdpr__dark-bg .page-gdpr__principles-heading,
.page-gdpr__dark-bg .page-gdpr__compliance-heading,
.page-gdpr__dark-bg .page-gdpr__security-heading {
  color: #F2C14E; /* Gold for titles on dark background */
}

.page-gdpr__dark-bg .page-gdpr__text-block,
.page-gdpr__dark-bg .page-gdpr__rights-item,
.page-gdpr__dark-bg .page-gdpr__principles-item p,
.page-gdpr__dark-bg .page-gdpr__compliance-item p,
.page-gdpr__dark-bg .page-gdpr__security-item p {
  color: #AFC4E8; /* Text Secondary */
}

.page-gdpr__dark-bg .page-gdpr__text-block a {
  color: #4FA8FF;
}

.page-gdpr__dark-bg .page-gdpr__principles-item,
.page-gdpr__dark-bg .page-gdpr__compliance-item,
.page-gdpr__dark-bg .page-gdpr__security-item {
  background-color: #08162B; /* Deep Navy */
  border: 1px solid #1B3357; /* Divider */
  border-left: 5px solid #4FA8FF; /* Glow for emphasis */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__contact-info {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 8px;
  margin-top: 30px;
  text-align: center;
  border: 1px solid #1D5FD1;
}

.page-gdpr__contact-info p {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-gdpr__contact-info a {
  color: #1D5FD1;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-info a:hover {
  text-decoration: underline;
}

.page-gdpr__faq-list {
  margin-top: 30px;
}

.page-gdpr__faq-item {
  background-color: #08162B; /* Deep Navy */
  border: 1px solid #1B3357; /* Divider */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #AFC4E8; /* Text Secondary */
}

.page-gdpr__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #F2C14E; /* Gold */
  list-style: none;
}

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

.page-gdpr__faq-question .page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #AFC4E8;
}

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

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

  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles header offset, small top padding */
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8em, 7vw, 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-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-gdpr__principles-item, .page-gdpr__rights-item, .page-gdpr__compliance-item, .page-gdpr__security-item {
    padding: 20px;
  }

  .page-gdpr__principles-heading, .page-gdpr__compliance-heading, .page-gdpr__security-heading {
    font-size: 1.2em;
  }

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

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

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

/* Contrast Fixes */
.page-gdpr__dark-bg .page-gdpr__text-block,
.page-gdpr__dark-bg .page-gdpr__principles-item p,
.page-gdpr__dark-bg .page-gdpr__compliance-item p,
.page-gdpr__dark-bg .page-gdpr__security-item p,
.page-gdpr__faq-answer {
  color: #AFC4E8; /* Ensure light text on dark background */
}

.page-gdpr__dark-bg .page-gdpr__text-block a,
.page-gdpr__dark-bg .page-gdpr__faq-answer a {
  color: #4FA8FF; /* Ensure contrast for links on dark background */
}