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

.page-gdpr__hero-placeholder {
  height: 120px; /* Desktop padding for fixed header */
}

@media (max-width: 768px) {
  .page-gdpr__hero-placeholder {
    height: 100px; /* Mobile padding for fixed header */
  }
}

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

.page-gdpr__main-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #E3B505; /* Auxiliary color for main title */
  line-height: 1.2;
}

.page-gdpr__section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  color: #E3B505; /* Auxiliary color for section titles */
  line-height: 1.3;
}

.page-gdpr__sub-title {
  font-size: 26px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #E3B505; /* Auxiliary color for sub titles */
  line-height: 1.4;
}

.page-gdpr__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-gdpr__keyword {
  font-weight: bold;
  color: #E3B505;
}

.page-gdpr__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto;
}

.page-gdpr__dark-bg {
  background-color: #0A2463; /* Main brand color for dark sections */
  color: #ffffff;
  padding: 60px 0;
}

.page-gdpr__light-bg {
  background-color: #f9f9f9; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
  padding: 60px 0;
}

.page-gdpr__text-contrast-fix {
  color: #333333 !important; /* Ensure dark text on light background */
}

.page-gdpr__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  color: #333333; /* Dark text for card content */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-gdpr__card-title {
  font-size: 20px;
  font-weight: bold;
  color: #0A2463; /* Main brand color for card titles */
  margin-bottom: 15px;
}

.page-gdpr__card-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  padding: 0;
  font-size: 17px;
  color: #f0f0f0;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-gdpr__list-item strong {
  color: #E3B505;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #E3B505, #FFC107); /* Auxiliary color gradient */
  color: #0A2463; /* Main brand color for button text */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: none;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(135deg, #FFC107, #E3B505);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: #000000; /* Darker text on hover */
}

/* FAQ Section */
.page-gdpr__faq-section {
  padding: 60px 0;
  background-color: #0A2463;
  color: #ffffff;
}

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

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.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, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.1); /* Slightly lighter background for answers */
  border-radius: 0 0 5px 5px;
  color: #f0f0f0;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #0A2463; /* Main brand color for question background */
  border: 1px solid #E3B505; /* Auxiliary color for border */
  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: #1a3a70; /* Slightly lighter main color on hover */
  border-color: #FFC107;
}

.page-gdpr__faq-question:active {
  background: #051a4a;
}

.page-gdpr__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff; /* White text for question */
}

.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #E3B505; /* Auxiliary color for toggle icon */
  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: 28px;
  height: 28px;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
  color: #FFC107;
  transform: rotate(45deg); /* Rotate to form an 'X' or similar for close */
}

.page-gdpr__faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__main-title {
    font-size: 32px;
  }
  .page-gdpr__section-title {
    font-size: 28px;
  }
  .page-gdpr__sub-title {
    font-size: 22px;
  }
  .page-gdpr__paragraph {
    font-size: 16px;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__cta-button {
    font-size: 16px;
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__container {
    padding: 20px 15px;
  }
  .page-gdpr__main-title {
    font-size: 28px;
  }
  .page-gdpr__section-title {
    font-size: 24px;
  }
  .page-gdpr__sub-title {
    font-size: 20px;
  }
  .page-gdpr__paragraph {
    font-size: 15px;
  }
  .page-gdpr__card {
    padding: 25px;
  }
  .page-gdpr__card-title {
    font-size: 18px;
  }
  .page-gdpr__card-text {
    font-size: 14px;
  }
  .page-gdpr__list {
    font-size: 15px;
    margin-left: 20px;
  }
  .page-gdpr__faq-question {
    padding: 15px;
  }
  .page-gdpr__faq-question h3 {
    font-size: 16px;
  }
  .page-gdpr__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px !important;
  }
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__section, .page-gdpr__card, .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}