/* style/gdpr.css */
:root {
  --primary-color: #1A202C;
  --secondary-color: #E53E3E;
  --accent-color: #F6AD55;
  --text-light: #F7FAFC;
  --text-dark: #2D3748;
  --background-dark: #1A202C;
  --background-light: #f0f2f5;
  --border-color: #4A5568;
}

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

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

.page-gdpr a:hover {
  color: var(--secondary-color);
}

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

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

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

.page-gdpr h1, .page-gdpr h2, .page-gdpr h3 {
  color: var(--text-light);
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr h1 {
  font-size: 2.8em;
  font-weight: bold;
  color: var(--accent-color);
}

.page-gdpr h2 {
  font-size: 2.2em;
  font-weight: bold;
  color: var(--secondary-color);
}

.page-gdpr h3 {
  font-size: 1.6em;
  font-weight: 600;
  color: var(--text-light);
}

.page-gdpr p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: var(--text-light);
  text-align: justify;
}

.page-gdpr ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-light);
}

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

.page-gdpr strong {
  color: var(--accent-color);
}

/* Hero Section */
.page-gdpr-hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: var(--primary-color);
}

.page-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-hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
}

.page-gdpr-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-gdpr-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-gdpr-cta-button:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

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

/* FAQ Section */
.page-gdpr-faq {
  background-color: var(--primary-color);
  padding: 60px 0;
}

.page-gdpr-faq .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background-color: #2D3748; /* Slightly lighter dark for contrast */
}

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

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

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

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

.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: #1A202C;
  color: var(--text-light);
}

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

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

/* Call to Action at bottom */
.page-gdpr-call-to-action {
  text-align: center;
  background-color: var(--primary-color);
  padding: 80px 20px;
}

.page-gdpr-cta-wrapper {
  background-color: #2D3748;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-gdpr-cta-wrapper h2 {
  color: var(--accent-color);
}

.page-gdpr-cta-wrapper p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.15em;
  color: var(--text-light);
}

.page-gdpr-cta-button-bottom {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-gdpr-cta-button-bottom:hover {
  background: var(--accent-color);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr h1 {
    font-size: 2.4em;
  }
  .page-gdpr h2 {
    font-size: 1.8em;
  }
  .page-gdpr h3 {
    font-size: 1.4em;
  }
  .page-gdpr p {
    font-size: 1em;
  }
  .page-gdpr ul li {
    font-size: 0.95em;
  }
}

@media (max-width: 768px) {
  .page-gdpr-section {
    padding: 40px 0;
  }
  .page-gdpr h1 {
    font-size: 2em;
  }
  .page-gdpr h2 {
    font-size: 1.6em;
  }
  .page-gdpr h3 {
    font-size: 1.3em;
  }
  .page-gdpr-hero {
    padding: 60px 15px;
  }
  .page-gdpr-hero-image {
    margin-bottom: 20px;
  }
  .page-gdpr-cta-button, .page-gdpr-cta-button-bottom {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .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: 20px;
  }
  .page-gdpr-faq .faq-answer {
    padding: 0 20px;
  }
  .page-gdpr-faq .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-gdpr-cta-wrapper {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .page-gdpr h1 {
    font-size: 1.8em;
  }
  .page-gdpr h2 {
    font-size: 1.4em;
  }
  .page-gdpr h3 {
    font-size: 1.2em;
  }
  .page-gdpr-hero {
    padding: 40px 10px;
  }
  .page-gdpr-cta-button, .page-gdpr-cta-button-bottom {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-gdpr-faq .faq-question h3 {
    font-size: 1em;
  }
  .page-gdpr-faq .faq-toggle {
    font-size: 18px;
  }
}