.page-gdpr {
  color: #ffffff; /* Body background is dark (#0a0a0a), so text should be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  background: #0a0a0a; /* Ensure dark background for this section */
  text-align: center;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px; /* Space between image and content */
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  max-width: 1200px; /* Display width */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-gdpr__description {
  font-size: 1.15rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.page-gdpr__btn-primary:hover {
  background-color: #1a7fb3;
  transform: translateY(-2px);
}

.page-gdpr__content-area,
.page-gdpr__security-section,
.page-gdpr__contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

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

.page-gdpr__dark-bg {
  background: #0a0a0a;
  color: #ffffff;
}

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

.page-gdpr__paragraph {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
  color: inherit;
}

.page-gdpr__paragraph--center {
  text-align: center;
}

.page-gdpr__rights-section {
  padding: 60px 20px;
  text-align: center;
}

.page-gdpr__rights-section .page-gdpr__section-title {
  color: #ffffff;
}

.page-gdpr__rights-section .page-gdpr__paragraph {
  color: #f0f0f0;
}

.page-gdpr__image-container {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

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

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

.page-gdpr__card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark background */
  color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
}

.page-gdpr__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-gdpr__card-text {
  font-size: 0.95rem;
  color: #e0e0e0;
}

.page-gdpr__security-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.page-gdpr__image--left {
  flex: 1 1 400px;
  min-width: 200px; /* Min image size */
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__text-block {
  flex: 2 1 500px;
  min-width: 300px;
}

.page-gdpr__sub-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__sub-title:first-of-type {
  margin-top: 0;
}

.page-gdpr__cookie-policy-section {
  padding: 60px 20px;
  text-align: center;
}

.page-gdpr__cookie-policy-section .page-gdpr__section-title {
  color: #ffffff;
}

.page-gdpr__cookie-policy-section .page-gdpr__paragraph {
  color: #f0f0f0;
}

.page-gdpr__list {
  list-style-type: disc;
  text-align: left;
  max-width: 800px;
  margin: 20px auto 30px;
  padding-left: 20px;
  color: #f0f0f0;
}

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

.page-gdpr__link {
  color: #26A9E0;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #1a7fb3;
}

.page-gdpr__contact-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.page-gdpr__contact-details {
  flex: 2 1 500px;
  min-width: 300px;
  text-align: left;
}

.page-gdpr__contact-item {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333333;
}

.page-gdpr__image--right {
  flex: 1 1 400px;
  min-width: 200px; /* Min image size */
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__btn-secondary {
  display: inline-block;
  background: #ffffff;
  color: #26A9E0;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 2px solid #26A9E0;
  cursor: pointer;
  margin-top: 20px;
  font-size: 1rem;
}

.page-gdpr__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-gdpr__faq-section {
  padding: 60px 20px;
}

.page-gdpr__faq-section .page-gdpr__section-title {
  color: #ffffff;
}

.page-gdpr__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

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

.page-gdpr__faq-item[open] {
  background: rgba(255, 255, 255, 0.15);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.3s ease;
}

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

.page-gdpr__faq-question:hover {
  color: #FFFFFF;
}

.page-gdpr__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #FFFFFF;
  transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-image {
    max-width: 1000px; /* Adjust for tablet */
  }
}

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

  .page-gdpr__hero-section {
    padding: 10px 15px 40px; /* Adjust padding for mobile */
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-gdpr__description {
    font-size: 1rem;
    padding: 0 10px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
  }

  .page-gdpr__content-area,
  .page-gdpr__rights-section,
  .page-gdpr__security-section,
  .page-gdpr__cookie-policy-section,
  .page-gdpr__contact-section,
  .page-gdpr__faq-section {
    padding: 40px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

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

  .page-gdpr__rights-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__security-content,
  .page-gdpr__contact-section {
    flex-direction: column;
    gap: 30px;
  }

  .page-gdpr__image--left,
  .page-gdpr__image--right {
    width: 100% !important;
    flex: none;
    max-width: 100% !important;
    min-width: 200px !important; /* Ensure min size */
    order: -1; /* Image first on mobile */
  }

  .page-gdpr__text-block,
  .page-gdpr__contact-details {
    width: 100%;
    flex: none;
    min-width: unset;
  }

  .page-gdpr__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-gdpr__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

  /* Ensure all images are responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All containers with images/buttons/videos */
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__image-container,
  .page-gdpr__security-content,
  .page-gdpr__contact-section,
  .page-gdpr__faq-list,
  .page-gdpr__rights-list,
  .page-gdpr__hero-content,
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-gdpr__video-section {
    padding-top: 10px !important;
  }
}