/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  line-height: 1.6;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px;
  background-color: #000000;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-gdpr__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__intro-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-gdpr__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-gdpr__btn-primary:hover {
  background-color: #1a7fb2;
  border-color: #1a7fb2;
}

.page-gdpr__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-gdpr__btn-secondary:hover {
  background-color: #e0e0e0;
  color: #1a7fb2;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #000000;
}

.page-gdpr__dark-section {
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.page-gdpr__sub-title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-gdpr p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #f0f0f0;
}

.page-gdpr a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: #1a7fb2;
  text-decoration: underline;
}

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

.page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #f0f0f0;
}

.page-gdpr__list li strong {
  color: #26A9E0;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  max-width: 800px;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__faq-section {
  background-color: #0d0d0d;
  color: #ffffff;
}

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

.page-gdpr__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-gdpr__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-gdpr__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
  color: #26A9E0;
}

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: #ffffff;
}

.page-gdpr__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #f0f0f0;
}

.page-gdpr__faq-answer p {
  margin-bottom: 0;
}

.page-gdpr__cta-section {
  background-color: #000000;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-gdpr__cta-content {
  max-width: 800px;
}

.page-gdpr__cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-gdpr__cta-description {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-gdpr__cta-image-wrapper {
  width: 100%;
  max-width: 800px;
}

.page-gdpr__cta-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive styles */
@media (min-width: 769px) {
  .page-gdpr__cta-section {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }

  .page-gdpr__cta-content,
  .page-gdpr__cta-image-wrapper {
    flex: 1;
    max-width: 50%;
  }

  .page-gdpr__cta-content {
    padding-right: 40px;
  }

  .page-gdpr__cta-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-gdpr__hero-section {
    padding: 10px 15px 40px;
  }

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

  .page-gdpr__intro-text {
    font-size: 1rem;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-gdpr__content-area,
  .page-gdpr__faq-section,
  .page-gdpr__cta-section {
    padding: 40px 15px;
  }

  .page-gdpr__section-title {
    font-size: 1.8rem;
  }

  .page-gdpr__sub-title {
    font-size: 1.3rem;
  }

  .page-gdpr p,
  .page-gdpr__list li {
    font-size: 0.95rem;
  }

  .page-gdpr__content-image,
  .page-gdpr__cta-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__cta-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-gdpr__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }

  .page-gdpr__faq-answer {
    padding: 0 15px 15px;
  }

  .page-gdpr__cta-title {
    font-size: 1.8rem;
  }

  .page-gdpr__cta-description {
    font-size: 1rem;
  }
}