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

.page-gdpr__hero {
  background: linear-gradient(135deg, var(--primary-color), #34495e);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-gdpr__hero-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.page-gdpr__hero-button:hover {
  background-color: #e0b800;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

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

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__content-grid {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

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

.page-gdpr__image-block {
  flex: 1;
  min-width: 300px;
}

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

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  padding-left: 0;
}

.page-gdpr__list li {
  margin-bottom: 10px;
  color: #444;
}

.page-gdpr__list li strong {
  color: var(--primary-color);
}

.page-gdpr__faq-list {
  margin-top: 30px;
}

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

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

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

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

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

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

.page-gdpr .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: #555;
}

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

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

.page-gdpr__conclusion {
  background-color: var(--primary-color);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-gdpr__conclusion .page-gdpr__section-title {
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.page-gdpr__conclusion .page-gdpr__section-title::after {
  background-color: #ffffff;
}

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

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

.page-gdpr__conclusion a:hover {
  color: #e0b800;
}

.page-gdpr__cta-block {
  margin-top: 40px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: inline-block;
}

.page-gdpr__cta-block p {
  margin-bottom: 20px;
  font-size: 1.3em;
  font-weight: bold;
  color: #ffffff;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 18px 40px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

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

  .page-gdpr__sub-title {
    font-size: 1.6em;
  }

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

  .page-gdpr__image-block {
    min-width: unset;
    width: 100%;
    order: -1; /* Image first on mobile */
  }

  .page-gdpr__text-block {
    flex: none;
    width: 100%;
  }
}

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

  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-gdpr__section {
    padding: 40px 0;
  }

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

  .page-gdpr__sub-title {
    font-size: 1.4em;
  }

  .page-gdpr__container {
    padding: 0 15px;
  }

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

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

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

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

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

  .page-gdpr__list {
    margin-left: 20px;
  }

  .page-gdpr__conclusion {
    padding: 60px 15px;
  }

  .page-gdpr__cta-block {
    padding: 20px;
  }

  .page-gdpr__cta-block p {
    font-size: 1.1em;
  }

  .page-gdpr__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }

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

  .page-gdpr__sub-title {
    font-size: 1.2em;
  }

  .page-gdpr__hero-button {
    width: 100%;
  }

  .page-gdpr__cta-button {
    width: 100%;
  }
}