.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a3f4c 100%);
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-gdpr__main-title {
  font-size: 3.2em;
  color: #FFD700; /* Accent color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #CCCCCC;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for CTA */
  color: #1A202C; /* Dark text on accent background */
  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;
}

.page-gdpr__cta-button:hover {
  background-color: #E0B000; /* Slightly darker accent on hover */
  transform: translateY(-2px);
}

.page-gdpr__content-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.page-gdpr__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__text-block {
  flex: 1;
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-gdpr__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__image-wrapper--center {
  margin-top: 40px;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__feature-item, .page-gdpr__right-item {
  background-color: #2D3748; /* Slightly lighter dark background */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-gdpr__feature-item:hover, .page-gdpr__right-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__feature-title, .page-gdpr__right-title {
  font-size: 1.5em;
  color: #FFD700; /* Accent color */
  margin-bottom: 15px;
}

.page-gdpr__feature-item p, .page-gdpr__right-item p {
  color: #CCCCCC;
}

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

.page-gdpr__detail-item {
  background-color: #2D3748;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__detail-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-gdpr__detail-item p {
  color: #CCCCCC;
}

.page-gdpr__note {
  margin-top: 30px;
  font-style: italic;
  color: #AAAAAA;
  text-align: center;
}

.page-gdpr__legal-list, .page-gdpr__security-list, .page-gdpr__third-party-list, .page-gdpr__cookie-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__legal-list li, .page-gdpr__security-list li, .page-gdpr__third-party-list li, .page-gdpr__cookie-list li {
  background-color: #2D3748;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-gdpr__legal-list li h3, .page-gdpr__security-list li strong, .page-gdpr__third-party-list li strong, .page-gdpr__cookie-list li strong {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 10px;
  display: block;
}

.page-gdpr__legal-list li p, .page-gdpr__security-list li, .page-gdpr__third-party-list li, .page-gdpr__cookie-list li {
  color: #E0E0E0;
}

.page-gdpr__security-list li strong {
  font-size: 1.1em;
  margin-right: 5px;
}

.page-gdpr__action-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-gdpr__link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #E0B000;
  text-decoration: underline;
}

.page-gdpr__contact-info {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
}

.page-gdpr__contact-info p {
  margin-bottom: 10px;
  color: #E0E0E0;
}

.page-gdpr__contact-info a {
  color: #FFD700;
  text-decoration: none;
}

.page-gdpr__contact-info a:hover {
  text-decoration: underline;
}

.page-gdpr__last-updated {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
  color: #AAAAAA;
}

/* FAQ styles */
.page-gdpr__faq-list {
  margin-top: 40px;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #2D3748; /* Slightly lighter dark background */
  color: #FFD700; /* Accent color for question */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background: #1A202C; /* Main dark background for answer */
  color: #E0E0E0;
  padding: 0 25px;
}

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

.faq-answer p {
  margin: 0;
  color: #E0E0E0;
}

.faq-answer a {
  color: #FFD700;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__main-title {
    font-size: 2.5em;
  }

  .page-gdpr__section-title {
    font-size: 2em;
  }

  .page-gdpr__content-grid {
    flex-direction: column;
  }

  .page-gdpr__content-grid--reverse {
    flex-direction: column;
  }

  .page-gdpr__image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 0;
  }

  .page-gdpr__main-title {
    font-size: 2em;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
  }

  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-gdpr__features-grid, .page-gdpr__rights-grid, .page-gdpr__data-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__feature-item, .page-gdpr__right-item, .page-gdpr__detail-item {
    padding: 20px;
  }

  .page-gdpr__feature-title, .page-gdpr__right-title, .page-gdpr__detail-title {
    font-size: 1.3em;
  }

  .page-gdpr__legal-list li, .page-gdpr__security-list li, .page-gdpr__third-party-list li, .page-gdpr__cookie-list li {
    padding: 15px 20px;
  }

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

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

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

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