.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: var(--deep-navy); /* Body background from shared.css */
}

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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08162B; /* Deep Navy */
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Adjust as needed */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Desktop: cover to fill space */
}

.page-gdpr__hero-content-block {
  padding: 40px 20px;
  max-width: 900px;
  z-index: 1;
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F3F8FF; /* Text Main */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: #AFC4E8; /* Text Secondary */
}

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__btn-secondary {
  background: transparent;
  color: #F3F8FF; /* Text Main */
  border: 2px solid #244D84; /* Border color */
}

.page-gdpr__btn-secondary:hover {
  background: rgba(43, 115, 246, 0.1);
  color: #4FA8FF; /* Glow color */
}

.page-gdpr__section {
  padding: 60px 0;
  position: relative;
}

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #F3F8FF; /* Text Main */
  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: linear-gradient(90deg, #2B73F6, #4FA8FF);
  border-radius: 2px;
}

.page-gdpr__section-title--light {
  color: #F3F8FF; /* Text Main */
}

.page-gdpr__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
  color: #AFC4E8; /* Text Secondary */
}

.page-gdpr__text-block--light {
  color: #F3F8FF; /* Text Main */
}

.page-gdpr__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 30px auto;
  max-width: 800px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__image-content--right {
  float: right;
  margin-left: 30px;
  max-width: 50%;
}

.page-gdpr__dark-section {
  background-color: #10233F; /* Card BG */
  color: #F3F8FF;
}

.page-gdpr__dark-section .page-gdpr__text-block {
  color: #AFC4E8;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-gdpr__list-item {
  background-color: #08162B; /* Deep Navy */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #244D84; /* Border color */
}

.page-gdpr__list-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #4FA8FF; /* Glow color */
  margin-bottom: 15px;
}

.page-gdpr__list-item p {
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
}

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

.page-gdpr__card {
  background-color: #10233F; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #244D84; /* Border color */
  display: flex;
  flex-direction: column;
}

.page-gdpr__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #F2C14E; /* Gold color */
  margin-bottom: 10px;
}

.page-gdpr__card-text {
  font-size: 0.95rem;
  color: #AFC4E8; /* Text Secondary */
  flex-grow: 1;
}

.page-gdpr__text-block--note {
  font-style: italic;
  margin-top: 40px;
  text-align: center;
  color: #AFC4E8;
}

.page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-gdpr__security-item {
  background-color: #08162B; /* Deep Navy */
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #4FA8FF; /* Glow color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__security-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 10px;
}

.page-gdpr__security-item p {
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
}

.page-gdpr__security-item a {
  color: #4FA8FF; /* Glow color */
  text-decoration: underline;
}

.page-gdpr__security-item a:hover {
  color: #F2C14E; /* Gold color */
}

.page-gdpr__contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* FAQ Section */
details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #244D84; /* Border color */
  overflow: hidden;
  background: #10233F; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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: #1B3357; /* Divider color for hover */
}

.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3F8FF; /* Text Main */
}

.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #4FA8FF; /* Glow color */
  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: #08162B; /* Deep Navy */
  border-radius: 0 0 5px 5px;
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__container {
    padding: 15px;
  }

  .page-gdpr__hero-content-block {
    padding: 30px 15px;
  }

  .page-gdpr__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-gdpr__hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    padding: 12px 24px;
    font-size: 1rem;
  }

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

  .page-gdpr__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }

  .page-gdpr__text-block {
    font-size: 1rem;
  }

  .page-gdpr__list,
  .page-gdpr__grid-container {
    grid-template-columns: 1fr;
  }

  .page-gdpr__list-item,
  .page-gdpr__card,
  .page-gdpr__security-item {
    padding: 20px;
  }

  .page-gdpr__list-title,
  .page-gdpr__card-title,
  .page-gdpr__security-title {
    font-size: 1.2rem;
  }

  .page-gdpr__image-content--right {
    float: none;
    margin: 30px auto;
    max-width: 100%;
  }

  .page-gdpr__contact-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 10px; /* Ensure small top padding */
  }

  .page-gdpr__hero-image-wrapper {
    max-height: 400px;
  }

  .page-gdpr__hero-image {
    object-fit: contain !important; /* Mobile: contain to show full image without cropping */
    aspect-ratio: unset !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-gdpr__hero-description {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
    margin-bottom: 20px;
  }

  .page-gdpr__hero-cta-buttons,
  .page-gdpr__contact-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px !important;
  }

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

  .page-gdpr__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 25px;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }

  .page-gdpr__section-title::after {
    width: 60px;
    height: 3px;
  }

  .page-gdpr__text-block,
  .page-gdpr__list-item p,
  .page-gdpr__card-text,
  .page-gdpr__security-item p,
  details.page-gdpr__faq-item .page-gdpr__faq-answer p {
    font-size: 0.95rem;
    padding: 0 15px;
    text-align: justify;
  }

  .page-gdpr__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto !important;
    padding: 0 15px;
    box-sizing: border-box !important;
  }

  .page-gdpr__list-title,
  .page-gdpr__card-title,
  .page-gdpr__security-title {
    font-size: 1.1rem;
  }

  .page-gdpr__list-item,
  .page-gdpr__card,
  .page-gdpr__security-item {
    padding: 15px;
    margin: 0 15px;
  }

  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    padding: 15px;
  }

  .page-gdpr__faq-qtext {
    font-size: 1rem;
  }

  .page-gdpr__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

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

  .page-gdpr__container {
    padding: 0;
  }

  .page-gdpr__commitment-section .page-gdpr__text-block,
  .page-gdpr__principles-section .page-gdpr__text-block,
  .page-gdpr__rights-section .page-gdpr__text-block,
  .page-gdpr__security-measures-section .page-gdpr__text-block,
  .page-gdpr__contact-support-section .page-gdpr__text-block,
  .page-gdpr__faq-section .page-gdpr__text-block {
    padding: 0 15px;
  }

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

  .page-gdpr__grid-container {
    padding: 0 15px;
  }

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

  /* Ensure general images and containers are responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__commitment-section,
  .page-gdpr__principles-section,
  .page-gdpr__rights-section,
  .page-gdpr__security-measures-section,
  .page-gdpr__contact-support-section,
  .page-gdpr__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* No horizontal padding here, handled by inner elements */
  }

  .page-gdpr__hero-content-block {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 15px;
  }

  .page-gdpr__hero-cta-buttons {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Color Contrast Fixes for specific elements if needed */
/* Example: */
/* .page-gdpr__contrast-fix { background: #ffffff !important; color: #333333 !important; border: 1px solid #e0e0e0 !important; } */
/* .page-gdpr__text-contrast-fix { color: #333333 !important; text-shadow: none !important; } */