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

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

.page-gdpr h1, .page-gdpr h2, .page-gdpr h3 {
  color: #000080;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-gdpr h1 {
  font-size: 2.8em;
  text-align: center;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr h2 {
  font-size: 2.2em;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
  margin-top: 40px;
  color: #000080;
}

.page-gdpr h3 {
  font-size: 1.6em;
  color: #000080;
  margin-top: 25px;
}

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

.page-gdpr ul {
  list-style: none;
  padding-left: 0;
}

.page-gdpr ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-gdpr ul li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-gdpr a {
  color: #000080;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.page-gdpr .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #000080 0%, #333399 100%); /* Dark blue gradient */
  color: #ffffff;
}

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

.page-gdpr .hero-image {
  width: 100%;
  max-width: 800px; /* Adjust max-width for hero image */
  height: auto;
  margin-bottom: 30px;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-gdpr .hero-content h1 {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-gdpr .hero-content p {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-gdpr .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #000080;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr .cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-gdpr .section-content, .page-gdpr .section-principles, .page-gdpr .section-rights, .page-gdpr .section-protection, .page-gdpr .section-contact-dpo, .page-gdpr .section-faq, .page-gdpr .section-disclaimer {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr .section-principles, .page-gdpr .section-protection, .page-gdpr .section-faq {
  background-color: #f9f9f9;
}

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

.page-gdpr .contact-info {
  background-color: #e6f7ff;
  border-left: 5px solid #000080;
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
}

.page-gdpr .contact-info p {
  margin: 5px 0;
  font-size: 1.1em;
  color: #000080;
}

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

.page-gdpr .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

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

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

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

.page-gdpr .faq-toggle {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-gdpr .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #000080;
}

.page-gdpr .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #f9f9f9;
  color: #555;
}

.page-gdpr .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px;
  border-top: 1px solid #e0e0e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr .hero-content h1 {
    font-size: 3em;
  }
  .page-gdpr .hero-content p {
    font-size: 1.2em;
  }
  .page-gdpr h1 {
    font-size: 2.5em;
  }
  .page-gdpr h2 {
    font-size: 2em;
  }
  .page-gdpr h3 {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-gdpr .hero-section {
    padding: 40px 15px;
  }
  .page-gdpr .hero-content h1 {
    font-size: 2.5em;
  }
  .page-gdpr .hero-content p {
    font-size: 1em;
  }
  .page-gdpr .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-gdpr .section-content, .page-gdpr .section-principles, .page-gdpr .section-rights, .page-gdpr .section-protection, .page-gdpr .section-contact-dpo, .page-gdpr .section-faq, .page-gdpr .section-disclaimer {
    padding: 40px 0;
  }
  .page-gdpr h1 {
    font-size: 2em;
  }
  .page-gdpr h2 {
    font-size: 1.8em;
  }
  .page-gdpr h3 {
    font-size: 1.3em;
  }
  .page-gdpr p {
    font-size: 0.95em;
  }
  .page-gdpr .faq-question {
    padding: 12px;
  }
  .page-gdpr .faq-question h3 {
    font-size: 1.1em;
  }
  .page-gdpr .faq-toggle {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .page-gdpr .hero-content h1 {
    font-size: 2em;
  }
  .page-gdpr .hero-content p {
    font-size: 0.9em;
  }
  .page-gdpr h1 {
    font-size: 1.8em;
  }
  .page-gdpr h2 {
    font-size: 1.6em;
  }
  .page-gdpr h3 {
    font-size: 1.2em;
  }
  .page-gdpr .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
}