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

.page-gdpr__hero-section {
  position: relative;
  padding-top: 10px; /* Small top spacing as body handles header offset */
  margin-bottom: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual effect, but not text over image */
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

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

.page-gdpr__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 30px;
  color: #333333;
}

.page-gdpr__hero-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-gdpr__section {
  padding: 60px 0;
  margin-bottom: 30px;
}

.page-gdpr__light-bg {
  background-color: #ffffff;
}

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

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #E53935;
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333333;
}

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

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

.page-gdpr__flex-item {
  flex: 1;
}

.page-gdpr__image-block {
  flex-shrink: 0;
  max-width: 50%;
}

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

.page-gdpr__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-gdpr__list strong {
  color: #E53935;
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr__contact-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333333;
}

.page-gdpr__contact-list strong {
  color: #E53935;
}

.page-gdpr__contact-link {
  color: #FF5A4F;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  text-decoration: underline;
  color: #E53935;
}

/* FAQ styles */
details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #E0E0E0;
  overflow: hidden;
  background: #ffffff;
}

details.page-gdpr__faq-item summary.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

details.page-gdpr__faq-item summary.page-gdpr__faq-question:hover {
  background: #f5f5f5;
}

.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}

.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-gdpr__faq-item .page-gdpr__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #333333;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }
  .page-gdpr__main-title {
    font-size: 2.8rem;
  }
  .page-gdpr__hero-description {
    font-size: 1.1rem;
  }
  .page-gdpr__section {
    padding: 50px 0;
  }
  .page-gdpr__section-title {
    font-size: 2.2rem;
  }
  .page-gdpr__content-flex {
    flex-direction: column;
    gap: 30px;
  }
  .page-gdpr__image-block {
    max-width: 100%;
  }
  .page-gdpr__flex-item {
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Hero Section Mobile */
  .page-gdpr__hero-section {
    margin-bottom: 20px;
    padding-top: 10px; /* Ensure small top spacing */
  }
  .page-gdpr__hero-image-wrapper {
    max-height: 300px;
  }
  .page-gdpr__hero-image {
    object-fit: contain !important; /* Mobile: ensure image is fully visible */
    aspect-ratio: unset !important; /* Remove fixed aspect ratio */
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__hero-content {
    margin-top: -50px; /* Adjust overlap */
    padding: 25px 15px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  }
  .page-gdpr__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem); /* Responsive H1 font size */
    margin-bottom: 15px;
  }
  .page-gdpr__hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  .page-gdpr__btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* General Sections Mobile */
  .page-gdpr__section {
    padding: 40px 0;
    margin-bottom: 15px;
  }
  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem); /* Responsive section title */
    margin-bottom: 30px;
  }
  .page-gdpr__text-block p,
  .page-gdpr__list li,
  .page-gdpr__contact-list li {
    font-size: 0.95rem;
  }
  .page-gdpr__content-flex {
    flex-direction: column; /* Stack content vertically */
    gap: 25px;
  }
  .page-gdpr__image-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__image-block img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* FAQ Mobile */
  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    padding: 15px;
  }
  .page-gdpr__faq-qtext {
    font-size: 15px;
  }
  .page-gdpr__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
    margin-left: 10px;
  }
  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 15px 15px;
  }

  /* Buttons and Button Containers Mobile */
  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px; /* Spacing between stacked buttons */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}