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

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

.page-gdpr-hero {
  background: linear-gradient(135deg, #0A2463, #2E4A86);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  border-bottom: 5px solid #FFD700;
}

.page-gdpr-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
}

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

.page-gdpr-hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

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

.page-gdpr-bg-alt {
  background-color: #f1f3f5;
}

.page-gdpr-heading {
  font-size: 2.2em;
  color: #0A2463;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-gdpr-section p {
  margin-bottom: 1em;
  font-size: 1.1em;
  color: #444;
}

.page-gdpr-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 1.5em;
  font-size: 1.1em;
  color: #444;
}

.page-gdpr-list li {
  margin-bottom: 0.8em;
}

.page-gdpr-list strong {
  color: #0A2463;
}

.page-gdpr-image-content {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-gdpr-contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5em;
  font-size: 1.1em;
  color: #444;
}

.page-gdpr-contact-list li {
  margin-bottom: 10px;
}

.page-gdpr-link {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* FAQ Styles */
.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

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

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

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #0A2463;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #f9f9f9;
  color: #555;
}

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

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 20px;
  border-top: 1px solid #e0e0e0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #0A2463;
}

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

  .page-gdpr-subtitle {
    font-size: 1.2em;
  }

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

  .page-gdpr-section {
    padding: 40px 0;
  }

  .page-gdpr-container {
    padding: 0 15px;
  }

  .faq-question {
    padding: 15px;
  }

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

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

  .faq-answer {
    padding: 0 15px;
  }

  .faq-item.active .faq-answer {
    padding: 15px;
  }
}

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

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

  .page-gdpr-heading {
    font-size: 1.6em;
  }

  .page-gdpr-list, .page-gdpr-contact-list, .page-gdpr-section p {
    font-size: 1em;
  }
}