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

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

.page-gdpr-hero {
  background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.page-gdpr-hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr-hero-content {
  position: relative;
  z-index: 1;
}

.page-gdpr-hero h1 {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-gdpr-cta-button:hover {
  background-color: #E0C000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

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

.page-gdpr-section h2 {
  color: #FFD700;
  font-size: 2.2em;
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr-section h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-gdpr-section p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

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

.page-gdpr-section ul li {
  margin-bottom: 10px;
  color: #E0E0E0;
}

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

.page-gdpr-card {
  background-color: #2A2A2A;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.page-gdpr-card h3 {
  color: #FFD700;
  margin-top: 0;
  font-size: 1.4em;
}

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

.page-gdpr-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr-link:hover {
  color: #E0C000;
  text-decoration: underline;
}

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

/* FAQ Styles */
.page-gdpr-faq-list {
  margin-top: 30px;
}

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

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

.faq-question:hover {
  background: #3A3A3A;
}

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

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  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: #1F1F1F;
  color: #E0E0E0;
}

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

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

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

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

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

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

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

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

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

  .faq-toggle {
    font-size: 20px;
  }

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

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

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

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

  .page-gdpr-cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }

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

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