.page-gdpr {
  color: #ffffff; /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-banner {
  padding-top: 120px; /* Spacing for fixed header */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #0A246A 0%, #06184a 100%);
  text-align: center;
}

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

.page-gdpr__title {
  font-size: 3.2em;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__subtitle {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__section {
  padding: 60px 0;
}

.page-gdpr__section:nth-of-type(even) {
  background-color: rgba(255, 255, 255, 0.05); /* Light translucent background for even sections */
}

.page-gdpr__dark-section {
  background-color: #0A246A;
  color: #ffffff;
}

.page-gdpr__text-block {
  padding: 20px 0;
}

.page-gdpr__heading {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-gdpr__heading--center {
  text-align: center;
}

.page-gdpr p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-gdpr__list li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-gdpr__list li strong {
  color: #FFD700;
}

.page-gdpr__link {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #ffffff;
}

.page-gdpr__btn-link {
  display: inline-block;
  background-color: #FFD700;
  color: #0A246A;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
}

.page-gdpr__btn-link:hover {
  background-color: #ffffff;
  color: #0A246A;
}

.page-gdpr__image-wrapper {
  margin: 40px auto;
  text-align: center;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-gdpr__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* FAQ Section Styles */
.page-gdpr__faq {
  background-color: rgba(255, 255, 255, 0.05);
}

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

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #1a3a7c; /* Darker background for FAQ item */
}

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #e0e0e0;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: #0A246A; /* Main brand color for expanded answer */
  border-radius: 0 0 5px 5px;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #0A246A;
  border: 1px solid #1a3a7c;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-gdpr__faq-question:hover {
  background: #1a3a7c;
  border-color: #FFD700;
}

.page-gdpr__faq-question:active {
  background: #06184a;
}

.page-gdpr__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #FFD700;
}

.page-gdpr__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__title {
    font-size: 2.8em;
  }
  .page-gdpr__heading {
    font-size: 2em;
  }
  .page-gdpr p, .page-gdpr__list li {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-banner {
    padding-top: 100px; /* Mobile spacing for fixed header */
    padding-bottom: 40px;
  }
  .page-gdpr__title {
    font-size: 2.2em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__heading {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-gdpr p, .page-gdpr__list li {
    font-size: 0.95em;
  }
  .page-gdpr__faq-question {
    padding: 15px 20px;
  }
  .page-gdpr__faq-question h3 {
    font-size: 1em;
  }
  .page-gdpr__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-gdpr__faq-answer {
    padding: 0 20px;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px 20px !important;
  }

  /* Mobile image adaptation */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__section,
  .page-gdpr__container,
  .page-gdpr__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}