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

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

.page-gdpr h1, .page-gdpr h2, .page-gdpr h3 {
  color: #007bff;
  margin-bottom: 20px;
}

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

.page-gdpr h2 {
  font-size: 2.2em;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 10px;
  margin-top: 40px;
}

.page-gdpr h3 {
  font-size: 1.6em;
  color: #0056b3;
}

.page-gdpr p {
  margin-bottom: 15px;
}

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

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

.page-gdpr a {
  color: #007bff;
  text-decoration: none;
}

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

/* Hero Section */
.page-gdpr .gdpr-hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-gdpr .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 .gdpr-hero-image {
  width: 100%;
  max-width: 800px; /* Adjust as needed */
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-gdpr .gdpr-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

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

.page-gdpr .gdpr-hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-gdpr .cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  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: #e0a800;
  transform: translateY(-2px);
  color: #000;
  text-decoration: none;
}

/* Section Styling */
.page-gdpr .gdpr-intro, .page-gdpr .gdpr-principles, .page-gdpr .gdpr-rights, .page-gdpr .gdpr-security-measures, .page-gdpr .gdpr-contact-section, .page-gdpr .gdpr-faq-section, .page-gdpr .gdpr-cta-final {
  padding: 40px 20px;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-gdpr .gdpr-principles .principles-grid,
.page-gdpr .gdpr-rights .rights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-gdpr .principle-item, .page-gdpr .right-item {
  background-color: #f0f8ff;
  padding: 25px;
  border-radius: 8px;
  border-left: 5px solid #007bff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-gdpr .principle-item:hover, .page-gdpr .right-item:hover {
  transform: translateY(-5px);
}

.page-gdpr .principle-item h3, .page-gdpr .right-item h3 {
  color: #007bff;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.4em;
}

.page-gdpr .principle-item h3 a, .page-gdpr .right-item h3 a {
    color: #007bff;
    text-decoration: none;
}

.page-gdpr .principle-item h3 a:hover, .page-gdpr .right-item h3 a:hover {
    text-decoration: underline;
}

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

.page-gdpr .gdpr-security-measures ul li {
  background-color: #e9f5ff;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 5px;
  border-left: 4px solid #007bff;
  font-size: 1.1em;
}

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

.page-gdpr .gdpr-contact-section ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

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

/* FAQ Section */
.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;
  font-size: 1.2em;
  color: #333;
}

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

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

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

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

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

/* Final CTA Section */
.page-gdpr .gdpr-cta-final {
  text-align: center;
  background-color: #007bff;
  color: #fff;
  padding: 60px 20px;
  border-radius: 8px;
}

.page-gdpr .gdpr-cta-final h2 {
  color: #fff;
  border-bottom: none;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.page-gdpr .gdpr-cta-final p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr h1 {
    font-size: 2.5em;
  }
  .page-gdpr h2 {
    font-size: 2em;
  }
  .page-gdpr h3 {
    font-size: 1.4em;
  }
  .page-gdpr .gdpr-hero h1 {
    font-size: 2.8em;
  }
  .page-gdpr .gdpr-hero p {
    font-size: 1.1em;
  }
  .page-gdpr .principles-grid, .page-gdpr .rights-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr h1 {
    font-size: 2em;
  }
  .page-gdpr h2 {
    font-size: 1.8em;
  }
  .page-gdpr h3 {
    font-size: 1.2em;
  }
  .page-gdpr .gdpr-hero {
    padding: 60px 15px;
  }
  .page-gdpr .gdpr-hero h1 {
    font-size: 2.2em;
  }
  .page-gdpr .gdpr-hero p {
    font-size: 1em;
  }
  .page-gdpr .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr .gdpr-intro, .page-gdpr .gdpr-principles, .page-gdpr .gdpr-rights, .page-gdpr .gdpr-security-measures, .page-gdpr .gdpr-contact-section, .page-gdpr .gdpr-faq-section, .page-gdpr .gdpr-cta-final {
    padding: 30px 15px;
  }
  .page-gdpr .principles-grid, .page-gdpr .rights-list {
    grid-template-columns: 1fr;
  }
  .page-gdpr .principle-item, .page-gdpr .right-item {
    padding: 20px;
  }
  .page-gdpr .faq-question {
    padding: 12px;
  }
  .page-gdpr .faq-question h3 {
    font-size: 1.1em;
  }
  .page-gdpr .faq-toggle {
    font-size: 18px;
  }
  .page-gdpr .gdpr-cta-final h2 {
    font-size: 2em;
  }
  .page-gdpr .gdpr-cta-final p {
    font-size: 1em;
  }
}