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

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

.page-gdpr .hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr .hero-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-gdpr .hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-gdpr .cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: #ffc107;
  color: #000000;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr .cta-button:hover {
  background: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr .content-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-gdpr .section-title {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

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

.page-gdpr h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #007bff;
  font-size: 2em;
}

.page-gdpr h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #0056b3;
  font-size: 1.5em;
}

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

.page-gdpr .principle-item, .page-gdpr .right-item {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out;
}

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

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

.page-gdpr .security-list, .page-gdpr .contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr .security-list li, .page-gdpr .contact-list li {
  background-color: #e9f5ff;
  border-left: 5px solid #007bff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.05em;
  color: #333;
}

.page-gdpr .security-list li strong, .page-gdpr .contact-list li strong {
  color: #0056b3;
}

.page-gdpr .cta-bottom {
  text-align: center;
  margin-top: 50px;
  padding: 40px 20px;
  background-color: #007bff;
  border-radius: 10px;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr .cta-bottom p {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #ffffff;
}

/* FAQ Section */
.page-gdpr .faq-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-gdpr .faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.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 25px;
  background: #f0f8ff;
  color: #0056b3;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr .hero-title {
    font-size: 2.8em;
  }
  .page-gdpr .hero-subtitle {
    font-size: 1.1em;
  }
  .page-gdpr .section-title {
    font-size: 1.8em;
  }
  .page-gdpr h2 {
    font-size: 1.8em;
  }
  .page-gdpr h3 {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-gdpr .hero-title {
    font-size: 2.2em;
  }
  .page-gdpr .hero-subtitle {
    font-size: 1em;
  }
  .page-gdpr .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr .section-title {
    font-size: 1.6em;
  }
  .page-gdpr h2 {
    font-size: 1.6em;
  }
  .page-gdpr h3 {
    font-size: 1.2em;
  }
  .page-gdpr p {
    font-size: 0.95em;
  }
  .page-gdpr .principle-item, .page-gdpr .right-item, .page-gdpr .security-list li, .page-gdpr .contact-list li {
    padding: 15px;
    font-size: 0.95em;
  }
  .page-gdpr .cta-bottom p {
    font-size: 1.2em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr .hero-section {
    padding: 60px 15px;
  }
  .page-gdpr .hero-title {
    font-size: 1.8em;
  }
  .page-gdpr .hero-subtitle {
    font-size: 0.9em;
  }
  .page-gdpr .section-title {
    font-size: 1.4em;
  }
  .page-gdpr h2 {
    font-size: 1.4em;
  }
  .page-gdpr h3 {
    font-size: 1.1em;
  }
  .page-gdpr .cta-button {
    width: 100%;
    box-sizing: border-box;
  }
}