/* style/gdpr.css */
:root {
  --primary-color: #007bff;
  --secondary-color: #ffc107;
  --text-dark: #333;
  --text-light: #fff;
  --bg-light: #f8f9fa;
  --bg-dark: #212529;
  --accent-color: #28a745; /* A complementary green for success/highlight */
}

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

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

.page-gdpr-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr-hero p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.8;
}

.page-gdpr-hero img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}

.page-gdpr-section {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

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

.page-gdpr-alt-bg {
  background-color: #f0f4f8;
}

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

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

.page-gdpr-section h3 {
  font-size: 1.8em;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--secondary-color);
  padding-left: 15px;
}

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

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

.page-gdpr-section ul li {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.page-gdpr-section img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr-contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr-contact-info a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-gdpr-faq {
  background-color: var(--bg-light);
}

.page-gdpr-faq .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

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

.page-gdpr-faq .faq-question:hover {
  background: #f5f5f5;
  color: var(--primary-color);
}

.page-gdpr-faq .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--text-dark);
  border-left: none;
  padding-left: 0;
}

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

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

.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: #f9f9f9;
  color: var(--text-dark);
}

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

.page-gdpr-faq .faq-answer p {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.05em;
  line-height: 1.6;
}

.page-gdpr-cta-banner {
  background: linear-gradient(45deg, var(--secondary-color) 0%, #ffac1c 100%);
  color: var(--text-dark);
  padding: 70px 0;
  text-align: center;
}

.page-gdpr-cta-banner h2 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--text-dark);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
}

.page-gdpr-cta-banner h2::after {
  background-color: var(--primary-color);
}

.page-gdpr-cta-banner p {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
  color: var(--text-dark);
}

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

.page-gdpr-button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr-hero h1 {
    font-size: 2.5em;
  }
  .page-gdpr-section h2 {
    font-size: 2em;
  }
  .page-gdpr-section h3 {
    font-size: 1.5em;
  }
  .page-gdpr-section p, .page-gdpr-section ul li {
    font-size: 1em;
  }
  .page-gdpr-cta-banner h2 {
    font-size: 2.2em;
  }
  .page-gdpr-cta-banner p {
    font-size: 1.1em;
  }
  .page-gdpr-button {
    font-size: 1.2em;
    padding: 15px 35px;
  }
}

@media (max-width: 768px) {
  .page-gdpr-hero {
    padding: 60px 0;
  }
  .page-gdpr-hero h1 {
    font-size: 2em;
  }
  .page-gdpr-hero p {
    font-size: 1em;
  }
  .page-gdpr-section {
    padding: 40px 0;
  }
  .page-gdpr-section h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-gdpr-section h2::after {
    bottom: -8px;
  }
  .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: 12px 20px;
  }
  .page-gdpr-cta-banner {
    padding: 50px 0;
  }
  .page-gdpr-cta-banner h2 {
    font-size: 1.8em;
  }
  .page-gdpr-cta-banner p {
    font-size: 1em;
  }
  .page-gdpr-button {
    font-size: 1.1em;
    padding: 12px 30px;
  }
}

@media (max-width: 480px) {
  .page-gdpr-hero h1 {
    font-size: 1.7em;
  }
  .page-gdpr-section h2 {
    font-size: 1.5em;
  }
  .page-gdpr-faq .faq-question h3 {
    font-size: 1em;
  }
  .page-gdpr-button {
    font-size: 1em;
    padding: 10px 25px;
  }
}