:root {
  --primary-color: #FFD700;
  --secondary-color: #000080;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f4f7f6;
  --background-dark: #1a1a2e;
  --border-color: #e0e0e0;
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

.page-gdpr a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.page-gdpr-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a2e 100%);
  color: var(--text-light);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

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

.page-gdpr-hero p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-gdpr-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.page-gdpr-section h2 {
  font-size: 2.5em;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-gdpr-section h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 15px;
}

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

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

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

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

.page-gdpr-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gdpr-card h3 {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.page-gdpr-card h3 a {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-gdpr-card h3 a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-gdpr-card p {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

/* FAQ Section Specific Styles */
.page-gdpr-faq .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-gdpr-faq .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

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

.page-gdpr-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fcfcfc;
  border-top: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 0 8px 8px;
}

.page-gdpr-faq .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 25px;
  transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr-hero h1 {
    font-size: 2.8em;
  }

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

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

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

  .page-gdpr-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr-hero {
    padding: 60px 15px;
  }

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

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

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

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

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

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

  .page-gdpr-container {
    padding: 15px;
  }

  .page-gdpr-card-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr-faq .faq-question {
    padding: 15px 20px;
  }

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

  .page-gdpr-faq .faq-toggle {
    font-size: 1.5em;
  }

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

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

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

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

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

  .page-gdpr-image {
    margin: 20px auto;
  }
}