.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A1A1A; /* Dark background */
  line-height: 1.6;
}

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

.page-gdpr a:hover {
  color: #FFF; /* Lighter gold on hover */
  text-decoration: underline;
}

.page-gdpr .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-gdpr .hero-banner {
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Red to Gold gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr .hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-gdpr .hero-content {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  padding: 0 20px;
}

.page-gdpr .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-gdpr .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr .cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark Red text */
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.page-gdpr .cta-button:hover {
  background-color: #FFF; /* Lighter gold on hover */
  color: #8B0000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.page-gdpr section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr section:last-of-type {
  border-bottom: none;
}

.page-gdpr .section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-gdpr .sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr .section-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #CCCCCC; /* Lighter grey for paragraphs */
}

.page-gdpr .content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-gdpr .list-principles, .page-gdpr .list-rights, .page-gdpr .list-data-types, .page-gdpr .list-purposes, .page-gdpr .list-legal-basis, .page-gdpr .list-third-parties, .page-gdpr .list-security-measures {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr .list-item {
  background-color: #2A2A2A; /* Slightly lighter dark background for list items */
  border-left: 5px solid #FFD700; /* Gold accent */
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr .list-item-title {
  color: #FFD700; /* Gold for list item titles */
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr .list-item-description {
  color: #E0E0E0;
  font-size: 1em;
}

.page-gdpr .contact-info {
  background-color: #2A2A2A;
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr .contact-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #E0E0E0;
}

.page-gdpr .contact-item strong {
  color: #FFD700;
}

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

/* FAQ default state - answer hidden */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #2A2A2A;
  border-radius: 0 0 5px 5px;
  color: #E0E0E0;
}

/* FAQ expanded state */
.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px;
  background: #2A2A2A;
  border-radius: 0 0 5px 5px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Question style */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #3A3A3A; /* Slightly lighter dark for question */
  border: 1px solid #444;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
}

.faq-question:hover {
  background: #4A4A4A;
}

.faq-question h3 {
  color: #FFD700; /* Gold for FAQ question titles */
  font-size: 1.2em;
  margin: 0;
}

/* Toggle icon */
.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

/* Responsive design */
@media (max-width: 1024px) {
  .page-gdpr .hero-title {
    font-size: 2.8em;
  }
  .page-gdpr .hero-description {
    font-size: 1.2em;
  }
  .page-gdpr .section-title {
    font-size: 2.2em;
  }
  .page-gdpr .sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-gdpr .hero-banner {
    padding: 60px 0;
  }
  .page-gdpr .hero-title {
    font-size: 2.2em;
  }
  .page-gdpr .hero-description {
    font-size: 1em;
  }
  .page-gdpr .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-gdpr section {
    padding: 40px 0;
  }
  .page-gdpr .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr .sub-title {
    font-size: 1.4em;
  }
  .page-gdpr .section-paragraph {
    font-size: 0.95em;
  }
  .page-gdpr .list-item {
    padding: 15px 20px;
  }
  .page-gdpr .list-item-title {
    font-size: 1.1em;
  }
  .faq-question {
    padding: 15px;
    flex-direction: row;
    align-items: center;
  }
  .faq-question h3 {
    font-size: 1em;
    margin-right: 10px; /* Space between title and toggle */
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 10px 15px;
  }
  .page-gdpr .content-image {
    margin: 20px auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr .hero-title {
    font-size: 1.8em;
  }
  .page-gdpr .hero-description {
    font-size: 0.9em;
  }
  .page-gdpr .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-gdpr .section-title {
    font-size: 1.5em;
  }
  .page-gdpr .sub-title {
    font-size: 1.2em;
  }
  .page-gdpr .faq-question h3 {
    font-size: 0.95em;
  }
  .page-gdpr .contact-info {
    padding: 20px;
  }
  .page-gdpr .contact-item {
    font-size: 1em;
  }
}