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

.page-gdpr__hero-section {
  position: relative;
  padding: 120px 20px 80px; /* Adjusted padding-top for fixed header on desktop */
  background-color: var(--primary-color, #E44D26); /* Main brand color */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.page-gdpr__main-title {
  font-size: 3.2em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__main-title a {
  color: #FFB300;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__main-title a:hover {
  color: #ffffff;
}

.page-gdpr__description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__description .highlight {
  color: var(--secondary-color, #FFB300);
  font-weight: bold;
}

.page-gdpr__description a {
  color: #FFB300;
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: var(--secondary-color, #FFB300);
  color: #121212;
  border: 2px solid var(--secondary-color, #FFB300);
}

.page-gdpr__btn-primary:hover {
  background: #e6a200;
  border-color: #e6a200;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-gdpr__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-gdpr__content-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background for content */
  color: #f0f0f0; /* Light text for readability */
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--secondary-color, #FFB300);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-gdpr__section-title a {
  color: var(--secondary-color, #FFB300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__section-title a:hover {
  color: var(--primary-color, #E44D26);
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: var(--primary-color, #E44D26);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-gdpr__text-block .highlight {
  color: var(--secondary-color, #FFB300);
  font-weight: bold;
}

.page-gdpr__text-block a {
  color: #FFB300;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__text-block a:hover {
  text-decoration: underline;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

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

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

.page-gdpr__list li a {
  color: #FFB300;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__list li a:hover {
  text-decoration: underline;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  width: 40%;
  min-width: 300px;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  width: 40%;
  min-width: 300px;
}

.page-gdpr__content-section::after {
  content: '';
  display: table;
  clear: both;
}

/* FAQ Section */
.page-gdpr__faq-list {
  margin-top: 50px;
}

.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__faq-question:hover {
  background: #3a3a3a;
  border-color: var(--primary-color, #E44D26);
}

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

.page-gdpr__faq-question h3 a {
  color: var(--secondary-color, #FFB300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__faq-question h3 a:hover {
  color: #ffffff;
}

.page-gdpr__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color, #FFB300);
  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: var(--primary-color, #E44D26);
  transform: rotate(45deg); /* Optional: rotate for 'x' effect */
}

.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 25px;
  opacity: 0;
  background: #202020;
  color: #e0e0e0;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

.page-gdpr__faq-answer p {
  margin: 0;
  padding: 0;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-gdpr__faq-answer .highlight {
  color: var(--secondary-color, #FFB300);
  font-weight: bold;
}

.page-gdpr__faq-answer a {
  color: var(--secondary-color, #FFB300);
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.8em;
  }

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

  .page-gdpr__sub-title {
    font-size: 1.6em;
  }

  .page-gdpr__image--right,
  .page-gdpr__image--left {
    float: none;
    margin: 30px auto;
    width: 80%;
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 100px; /* Adjusted padding-top for fixed header on mobile */
    padding-bottom: 60px;
  }

  .page-gdpr__main-title {
    font-size: 2em;
  }

  .page-gdpr__description {
    font-size: 1em;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__content-section {
    padding: 60px 0;
  }

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

  .page-gdpr__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-gdpr__text-block,
  .page-gdpr__list li,
  .page-gdpr__faq-answer p {
    font-size: 0.95em;
  }

  .page-gdpr__list {
    margin-left: 20px;
  }

  .page-gdpr__image {
    margin: 20px auto;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

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

  .page-gdpr__container {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-section {
    padding-top: 80px;
    padding-bottom: 40px;
  }

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

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

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

  .page-gdpr__text-block,
  .page-gdpr__list li,
  .page-gdpr__faq-answer p {
    font-size: 0.9em;
  }

  .page-gdpr__faq-question {
    padding: 12px 15px;
  }

  .page-gdpr__faq-question h3 {
    font-size: 0.95em;
  }

  .page-gdpr__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

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

  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 10px 15px !important;
  }
}