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

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

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

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

.page-gdpr h1, .page-gdpr h2 {
  color: #007BFF; /* Primary color */
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr h1 {
  font-size: 2.8em;
  line-height: 1.2;
}

.page-gdpr h2 {
  font-size: 2.2em;
  line-height: 1.3;
}

.page-gdpr h3 {
  color: #0056b3; /* Darker shade of primary */
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

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

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

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

.page-gdpr a:hover {
  color: #FFC107; /* Secondary color for hover */
  text-decoration: underline;
}

.page-gdpr-cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #007BFF; /* Primary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-gdpr-cta-button:hover {
  background-color: #FFC107; /* Secondary color */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: #333; /* Ensure contrast on hover */
}

/* Hero Section */
.page-gdpr-hero {
  background: linear-gradient(135deg, #007BFF, #0056b3); /* Gradient with primary color */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr-hero .page-gdpr-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-gdpr-hero-content {
  flex: 1;
  text-align: left;
}

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

.page-gdpr-hero-content p {
  font-size: 1.2em;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 30px;
  text-align: left;
}

.page-gdpr-hero-content a {
  color: #FFC107;
}

.page-gdpr-hero-content a:hover {
  color: #ffffff;
}

.page-gdpr-hero-image {
  flex: 1;
  max-width: 500px;
}

.page-gdpr-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-gdpr-introduction, .page-gdpr-data-collection, .page-gdpr-rights, .page-gdpr-security, .page-gdpr-third-parties, .page-gdpr-cookies, .page-gdpr-contact, .page-gdpr-conclusion {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-gdpr-contact .page-gdpr-cta-button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
}

/* FAQ Section */
.page-gdpr-faq {
  background-color: #f1f7fe; /* Lighter shade of primary */
  padding: 60px 0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr-faq h2 {
  color: #007BFF;
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #343a40;
  flex-grow: 1;
  text-align: left;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #007BFF;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

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

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

.faq-item.active .faq-answer p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr-hero .page-gdpr-container {
    flex-direction: column;
    text-align: center;
  }

  .page-gdpr-hero-content {
    text-align: center;
  }

  .page-gdpr-hero-content h1 {
    font-size: 2.8em;
    text-align: center;
  }

  .page-gdpr-hero-content p {
    font-size: 1.1em;
    text-align: center;
  }

  .page-gdpr-hero-image {
    margin-top: 40px;
    max-width: 100%;
  }

  .page-gdpr h1 {
    font-size: 2.2em;
  }

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

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

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

  .page-gdpr-introduction, .page-gdpr-data-collection, .page-gdpr-rights, .page-gdpr-security, .page-gdpr-third-parties, .page-gdpr-cookies, .page-gdpr-contact, .page-gdpr-conclusion {
    padding: 30px;
  }

  .faq-question {
    padding: 18px 20px;
  }

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

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

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

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

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

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

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

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

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

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

  .page-gdpr ul li {
    font-size: 0.9em;
  }

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

  .page-gdpr-introduction, .page-gdpr-data-collection, .page-gdpr-rights, .page-gdpr-security, .page-gdpr-third-parties, .page-gdpr-cookies, .page-gdpr-contact, .page-gdpr-conclusion {
    padding: 20px;
  }

  .faq-question {
    padding: 15px;
  }

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

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

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

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