:root {
  --primary-color: #003366; /* Dark Blue */
  --secondary-color: #FFD700; /* Gold */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f8f8;
  --background-dark-section: #002244; /* Slightly lighter dark blue for sections */
  --border-color: #e0e0e0;
  --accent-link-color: #007bff; /* A standard blue for email links, ensuring contrast */
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: #ffffff;
  padding: 0;
  margin: 0;
}

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

.page-gdpr h1, .page-gdpr h2, .page-gdpr h3 {
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-gdpr h1 {
  font-size: 2.8em;
  color: var(--text-light);
}

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

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

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

.page-gdpr strong {
  font-weight: bold;
}

.page-gdpr .hero-section {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

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

.page-gdpr .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-gdpr .cta-button {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr .cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
}

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

.page-gdpr .section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

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

.page-gdpr .list-styled li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

.page-gdpr .contact-info {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

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

.page-gdpr .contact-link {
  color: var(--accent-link-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr .contact-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-gdpr .cta-bottom-section {
  text-align: center;
  background-color: var(--background-light);
  padding: 50px 20px;
  margin-top: 60px;
  border-radius: 10px;
}

.page-gdpr .cta-bottom-section p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--primary-color);
  font-weight: bold;
}

/* FAQ Section Styling */
.page-gdpr .faq-container {
  margin-top: 40px;
}

.page-gdpr .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

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

.page-gdpr .faq-question:hover {
  background: var(--background-light);
}

.page-gdpr .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
}

.page-gdpr .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.page-gdpr .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: var(--background-light);
  color: var(--text-dark);
}

.page-gdpr .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px;
}

.page-gdpr .faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr h1 {
    font-size: 2.2em;
  }
  .page-gdpr h2 {
    font-size: 1.8em;
  }
  .page-gdpr h3 {
    font-size: 1.4em;
  }
  .page-gdpr .hero-section {
    padding: 60px 0;
  }
  .page-gdpr .hero-content p {
    font-size: 1.1em;
  }
  .page-gdpr .content-section {
    padding: 40px 0;
  }
  .page-gdpr .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-gdpr h1 {
    font-size: 1.8em;
  }
  .page-gdpr h2 {
    font-size: 1.6em;
  }
  .page-gdpr h3 {
    font-size: 1.3em;
  }
  .page-gdpr .container {
    padding: 0 15px;
  }
  .page-gdpr .hero-section {
    padding: 40px 0;
  }
  .page-gdpr .hero-content p {
    font-size: 1em;
  }
  .page-gdpr .list-styled {
    margin-left: 20px;
  }
  .page-gdpr .faq-question {
    padding: 12px 15px;
  }
  .page-gdpr .faq-question h3 {
    font-size: 1.1em;
  }
  .page-gdpr .faq-toggle {
    font-size: 20px;
  }
  .page-gdpr .faq-answer {
    padding: 0 15px;
  }
  .page-gdpr .faq-item.active .faq-answer {
    padding: 15px;
  }
  .page-gdpr .cta-bottom-section {
    padding: 40px 15px;
  }
  .page-gdpr .cta-bottom-section p {
    font-size: 1.1em;
  }
}