.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-gdpr-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #8B0000; /* Fallback background */
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-gdpr-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

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

.page-gdpr-hero-content {
  z-index: 1;
  position: relative;
}

.page-gdpr-hero h1 {
  font-size: 3.2em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr-hero p {
  font-size: 1.2em;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr-section {
  padding: 50px 0;
  border-bottom: 1px solid #e0e0e0;
}

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

.page-gdpr-section h2 {
  font-size: 2.5em;
  color: #8B0000; /* Dark Red */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr-section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold */
  border-radius: 2px;
}

.page-gdpr-section h3 {
  font-size: 1.8em;
  color: #8B0000; /* Dark Red */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr-section p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444444;
}

.page-gdpr-section ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-gdpr-section ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #555555;
}

.page-gdpr-section ul li strong {
  color: #8B0000;
}

.page-gdpr-image-full {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-gdpr-faq .faq-list {
  margin-top: 30px;
}

.page-gdpr-faq .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-gdpr-faq .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-gdpr-faq .faq-question:hover {
  background: #f5f5f5;
}

.page-gdpr-faq .faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: #8B0000; /* Dark Red */
  flex-grow: 1;
}

.page-gdpr-faq .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700; /* Gold */
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.page-gdpr-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fffaf0; /* Light cream for answer background */
  color: #444444;
}

.page-gdpr-faq .faq-answer p {
  margin: 0;
  padding-bottom: 15px;
  font-size: 1.05em;
}

.page-gdpr-faq .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 25px;
}

.page-gdpr-faq .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #8B0000; /* Dark Red */
}

/* Call to Action Section */
.page-gdpr-cta {
  background: linear-gradient(135deg, #8B0000, #FFD700);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr-cta-content {
  max-width: 800px;
}

.page-gdpr-cta h2 {
  color: #ffffff;
  font-size: 2.8em;
  margin-bottom: 25px;
}

.page-gdpr-cta h2::after {
  background-color: #ffffff;
}

.page-gdpr-cta p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-gdpr-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Dark Red */
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr-cta-button:hover {
  background-color: #e0b800; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr-hero h1 {
    font-size: 2.5em;
  }

  .page-gdpr-hero p {
    font-size: 1em;
  }

  .page-gdpr-section h2 {
    font-size: 2em;
  }

  .page-gdpr-section h3 {
    font-size: 1.5em;
  }

  .page-gdpr-section p, .page-gdpr-section ul li {
    font-size: 1em;
  }

  .page-gdpr-faq .faq-question {
    padding: 15px 20px;
  }

  .page-gdpr-faq .faq-question h3 {
    font-size: 1.1em;
  }

  .page-gdpr-faq .faq-toggle {
    font-size: 20px;
  }

  .page-gdpr-faq .faq-answer {
    padding: 0 20px;
  }

  .page-gdpr-faq .faq-answer p {
    font-size: 0.95em;
  }

  .page-gdpr-cta h2 {
    font-size: 2em;
  }

  .page-gdpr-cta p {
    font-size: 1.1em;
  }

  .page-gdpr-cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr-hero h1 {
    font-size: 2em;
  }

  .page-gdpr-hero p {
    font-size: 0.9em;
  }

  .page-gdpr-section h2 {
    font-size: 1.8em;
  }

  .page-gdpr-section h3 {
    font-size: 1.3em;
  }

  .page-gdpr-faq .faq-question h3 {
    font-size: 1em;
  }

  .page-gdpr-faq .faq-toggle {
    font-size: 18px;
  }

  .page-gdpr-cta h2 {
    font-size: 1.8em;
  }

  .page-gdpr-cta p {
    font-size: 1em;
  }

  .page-gdpr-cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
}