.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main for light background */
  background-color: #F4F7FB; /* Custom background color */
}

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

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

.page-gdpr__hero-section {
  padding-top: 10px; /* Rely on body padding for header offset */
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-gdpr__hero-section .page-gdpr__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-gdpr__hero-content {
  max-width: 800px;
  margin-bottom: 20px;
}

.page-gdpr__main-title {
  font-size: 2.8em;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-gdpr__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1000px; /* Adjust as needed */
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Cover for desktop */
}

.page-gdpr__section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 40px;
  text-align: center;
}

.page-gdpr__dark-bg .page-gdpr__section-title {
  color: #ffffff;
}

.page-gdpr__light-bg {
  background-color: #F4F7FB; /* Custom background color */
  color: #1F2D3D; /* Text Main */
}

.page-gdpr__dark-bg {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
}

.page-gdpr__content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #1F2D3D; /* Text Main */
}

.page-gdpr__dark-bg .page-gdpr__text-block {
  color: #f0f0f0;
}

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

.page-gdpr__grid-layout--reversed {
  flex-direction: row-reverse;
}

.page-gdpr__text-content {
  flex: 1;
}

.page-gdpr__image-wrapper {
  flex: 1;
  min-width: 400px; /* Ensure images don't get too small */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image-content {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-gdpr__list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #1F2D3D; /* Text Main */
}

.page-gdpr__dark-bg .page-gdpr__list-item {
  color: #f0f0f0;
}

.page-gdpr__list--contact {
  list-style: none;
  margin-left: 0;
}

.page-gdpr__contact-link {
  color: #A5C4FF; /* Glow */
  text-decoration: underline;
}

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

.page-gdpr__contact-info {
  flex: 1;
}

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

.page-gdpr__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  cursor: pointer;
  background-color: #FFFFFF; /* Card BG */
  list-style: none; /* For details/summary */
}

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

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2F6BFF;
  pointer-events: none; /* Prevent interaction on toggle itself */
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  background-color: #F4F7FB; /* Lighter background when open */
  border-bottom: 1px solid #D6E2FF;
}

.page-gdpr__cta-section {
  text-align: center;
  padding: 80px 0;
}

.page-gdpr__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

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

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-gdpr__btn-secondary {
  background-color: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__btn-secondary:hover {
  background-color: #F4F7FB;
  color: #1F2D3D;
  border-color: #1F2D3D;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
  .page-gdpr__container {
    padding: 15px;
  }

  .page-gdpr__main-title {
    font-size: 2.5em;
  }

  .page-gdpr__subtitle {
    font-size: 1.1em;
  }

  .page-gdpr__section-title {
    font-size: 2em;
  }

  .page-gdpr__grid-layout {
    flex-direction: column;
    align-items: center;
  }

  .page-gdpr__image-wrapper {
    min-width: unset;
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px;
  }

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

  .page-gdpr__contact-info {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  
  .page-gdpr__main-title {
    font-size: 2em;
  }

  .page-gdpr__subtitle {
    font-size: 1em;
  }

  .page-gdpr__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-gdpr__hero-image {
    object-fit: contain !important; /* Mobile: contain, not cover */
    aspect-ratio: unset !important;
    max-height: none !important;
  }

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

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-gdpr__text-block,
  .page-gdpr__list-item,
  .page-gdpr__faq-question,
  .page-gdpr__faq-answer {
    font-size: 1em;
  }

  .page-gdpr__grid-layout {
    flex-direction: column;
    gap: 30px;
  }

  .page-gdpr__image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-gdpr__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__contact-grid {
    flex-direction: column;
    gap: 30px;
  }

  .page-gdpr__contact-info,
  .page-gdpr__image-wrapper {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .page-gdpr__faq-question {
    padding: 15px 20px;
    font-size: 1.05em;
  }

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

  .page-gdpr__button-group {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
  }

  /* General image and container responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}