.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #FFF5E1; /* Main text color based on brand palette */
  background-color: #B71C1C; /* Main background color */
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px; /* Small top padding, more bottom padding */
  background-color: #7A0E0E; /* Deep Red for hero background */
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Max height to constrain hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 40px 20px;
  box-sizing: border-box;
  z-index: 1;
}

.page-gdpr__main-title {
  font-size: 2.5em; /* Use clamp for H1 if needed, but avoid fixed large size */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFD86A; /* Gold for main title */
  letter-spacing: -0.02em;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF5E1;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for button text on gold background */
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section {
  padding: 60px 0;
  text-align: center;
  background-color: #B71C1C; /* Default section background */
}

.page-gdpr__light-bg {
  background-color: #D32F2F; /* Card BG color for alternating sections */
}

.page-gdpr__dark-bg {
  background-color: #7A0E0E; /* Deep Red for dark sections */
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-gdpr__section-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 30px;
  color: #FFCC66; /* Glow color for section titles */
  width: 100%;
}

.page-gdpr__subtitle {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #F4D34D; /* Gold color for subtitles */
  width: 100%;
}

.page-gdpr__text-block {
  flex: 1;
  min-width: 300px;
  color: #FFF5E1;
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
}

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

.page-gdpr__list li {
  margin-bottom: 10px;
}

.page-gdpr__list li strong {
  color: #F4D34D; /* Gold for strong text in lists */
}

.page-gdpr__image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #F2B544; /* Border color */
}

.page-gdpr__image--left {
  order: -1; /* Image on left for this section */
}

.page-gdpr a {
  color: #F4D34D; /* Gold for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: #FFD86A; /* Lighter gold on hover */
}

.page-gdpr__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  background-color: #7A0E0E; /* Deep Red for video section background */
  text-align: center;
}

.page-gdpr__video-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-gdpr__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 2px solid #F2B544; /* Border color */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 100%; /* Ensure video wrapper takes full width */
  max-width: 100%;
}

.page-gdpr__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-gdpr__video-caption {
  font-size: 0.9em;
  margin-top: 10px;
  color: #FFF5E1;
}

.page-gdpr__video-cta {
  margin-top: 30px;
}

.page-gdpr__faq-list {
  margin-top: 30px;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-gdpr__faq-item {
  background-color: #D32F2F; /* Card BG for FAQ items */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #F2B544;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-weight: bold;
  cursor: pointer;
  color: #FFD86A; /* Gold for FAQ questions */
  font-size: 1.1em;
  user-select: none;
  list-style: none;
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-gdpr__faq-answer {
  padding: 0 20px 15px;
  color: #FFF5E1;
  font-size: 0.95em;
  line-height: 1.5;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-gdpr__main-title {
    font-size: 2em;
  }

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

  .page-gdpr__subtitle {
    font-size: 1.3em;
  }

  .page-gdpr__content-area {
    flex-direction: column;
    gap: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    order: unset; /* Reset order for mobile */
  }

  .page-gdpr__text-block {
    min-width: unset;
    width: 100%;
  }

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

  .page-gdpr__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__hero-image-wrapper {
    max-height: unset;
  }

  .page-gdpr__video-section,
  .page-gdpr__video-container,
  .page-gdpr__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

  .page-gdpr__video-section {
    padding-top: 10px !important;
  }

  .page-gdpr__cta-button,
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr 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-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__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-gdpr__cta-buttons {
    flex-direction: column;
  }
}