.page-gdpr {
  color: #F2FFF6; /* Main text color for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
  background-color: #08160F; /* Background for hero section */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
  position: relative;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-gdpr__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 800px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  color: #F2FFF6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr__description {
  font-size: 1.1rem;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: #08160F; /* Default section background */
  color: #F2FFF6;
}

.page-gdpr__section:nth-of-type(even) {
  background-color: #111e17; /* Slightly different background for alternating sections */
}

.page-gdpr__dark-bg {
  background-color: #11271B; /* Custom dark background for specific sections */
  color: #F2FFF6;
}

.page-gdpr__section-title {
  font-size: 2.2rem;
  color: #F2FFF6;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.page-gdpr__paragraph {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #A7D9B8;
}

.page-gdpr__highlight {
  color: #F2FFF6;
  font-weight: bold;
}

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

.page-gdpr__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
  height: 100%; /* Ensure cards have equal height */
}

.page-gdpr__card-image {
  width: 100%;
  max-width: 400px; /* Max width for card images */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

.page-gdpr__card-text {
  font-size: 1rem;
  color: #A7D9B8;
  flex-grow: 1; /* Allow text to grow and push button to bottom */
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__rights-list .page-gdpr__list-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 18px 25px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #A7D9B8;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.page-gdpr__rights-list .page-gdpr__list-item strong {
  color: #F2FFF6;
  margin-right: 10px;
}

.page-gdpr__inline-link {
  color: #57E38D; /* Glow color for inline links */
  text-decoration: underline;
}

.page-gdpr__inline-link:hover {
  color: #2AD16F;
  text-decoration: none;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff; /* White text for primary button */
  border: none;
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
  background: #ffffff; /* White background for secondary button */
  color: #11A84E; /* Main color for secondary button text */
  border: 2px solid #11A84E;
}

.page-gdpr__btn-secondary:hover {
  background: #f0f0f0;
  color: #0A4B2C;
  transform: translateY(-2px);
}

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

.page-gdpr__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

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

.page-gdpr__faq-item summary:hover {
  background-color: #1e3a2a; /* Divider color for hover */
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
}

.page-gdpr__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 20px;
  color: #57E38D; /* Glow color for toggle icon */
}

.page-gdpr__faq-answer {
  padding: 15px 25px 25px 25px;
  font-size: 1.05rem;
  color: #A7D9B8;
  border-top: 1px solid #1E3A2A; /* Divider color */
}

.page-gdpr__small-text {
  font-size: 0.9rem;
  color: #A7D9B8;
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__section-title {
    font-size: 2rem;
  }
  .page-gdpr__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-gdpr__hero-content {
    padding: 15px;
  }
}

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

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

  .page-gdpr__hero-content {
    position: static;
    transform: none;
    text-shadow: none;
    padding: 30px 15px;
    max-width: 100%;
  }
  
  .page-gdpr__hero-image-wrapper {
    display: none; /* Hide hero image on mobile to prioritize content */
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-gdpr__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

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

  .page-gdpr__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding: 0 15px;
  }

  .page-gdpr__paragraph {
    font-size: 1rem;
    padding: 0 15px;
  }

  .page-gdpr__commitment-grid,
  .page-gdpr__data-process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-gdpr__card {
    padding: 25px;
  }

  .page-gdpr__card-image {
    max-width: 80%;
  }

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

  .page-gdpr__rights-list {
    padding: 0 15px;
  }

  .page-gdpr__rights-list .page-gdpr__list-item {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .page-gdpr__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 15px;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-gdpr__faq-item summary {
    padding: 18px 20px;
    font-size: 1.1rem;
  }

  .page-gdpr__faq-answer {
    padding: 12px 20px 20px 20px;
    font-size: 1rem;
  }
  
  /* Ensure all images are responsive on mobile */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__container,
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left and padding-right should be handled by individual elements if needed */
  }

  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column; 
    gap: 10px;
    padding: 0 15px;
  }

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

@media (max-width: 480px) {
  .page-gdpr__section-title {
    font-size: 1.6rem;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.6rem, 9vw, 2.2rem);
  }
  .page-gdpr__faq-item summary {
    font-size: 1rem;
  }
  .page-gdpr__faq-toggle {
    font-size: 1.5rem;
  }
}