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

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

.page-gdpr-hero {
  background: linear-gradient(135deg, #0A2463 0%, #0A2463 70%, #E3B505 100%);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-gdpr-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

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

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

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

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

.page-gdpr-sub-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #E3B505;
  padding-left: 15px;
}

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

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

.page-gdpr-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444;
}

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

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

.page-gdpr-cta-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr-cta-button:hover {
  background-color: #c9a004;
  transform: translateY(-2px);
  color: #0A2463;
}

/* FAQ Section Specific Styles */
.page-gdpr-faq-section {
  background-color: #f8f8f8;
  padding-bottom: 80px;
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

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

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

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

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

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

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

.faq-answer p {
  margin-bottom: 0;
  color: #555;
}

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

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

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

  .page-gdpr-sub-title {
    font-size: 1.5em;
    margin-top: 30px;
  }

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

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

  .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: 0.95em;
  }

  .page-gdpr-hero-image {
    max-width: 90%;
  }

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

  .page-gdpr-sub-title {
    font-size: 1.3em;
  }

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

  .page-gdpr-list {
    padding-left: 15px;
  }
}