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

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

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 40px; /* Adjust as needed */
  padding-top: 10px; /* Fixed header spacing */
}

.page-gdpr__hero-image-container {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: -80px; /* Pull content slightly over image for visual flow, but not overlapping text */
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__main-title {
  font-size: 2.8em;
  font-weight: 700;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-gdpr__cta-button--secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF; /* Main color */
  box-shadow: none;
}

.page-gdpr__cta-button--secondary:hover {
  background: #F4F7FB;
  color: #2F6BFF;
}

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

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

.page-gdpr__introduction p,
.page-gdpr__third-party-sharing p,
.page-gdpr__retention-transfer p,
.page-gdpr__cookie-policy p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-gdpr__dark-section {
  background-color: #2F6BFF; /* Primary color */
  color: #ffffff;
  padding: 60px 0;
}

.page-gdpr__dark-section .page-gdpr__section-title,
.page-gdpr__dark-section .page-gdpr__text-block,
.page-gdpr__dark-section .page-gdpr__item-title {
  color: #ffffff;
}

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

.page-gdpr__grid-item {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-gdpr__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__item-title {
  font-size: 1.5em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-gdpr__rights-list .page-gdpr__list-item {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__rights-list .page-gdpr__list-item .page-gdpr__item-title {
  font-size: 1.3em;
  color: #2F6BFF; /* Primary color */
  margin-bottom: 10px;
}

.page-gdpr__rights-list .page-gdpr__list-item p {
  color: #1F2D3D; /* Text Main */
  font-size: 0.95em;
}

.page-gdpr__full-width-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-bottom: 30px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-gdpr__link {
  color: #2F6BFF; /* Primary color */
  text-decoration: underline;
}

.page-gdpr__link:hover {
  color: #6FA3FF; /* Secondary color */
}

.page-gdpr__contact-info p {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #ffffff;
}

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

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

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: 600;
  color: #1F2D3D; /* Text Main */
  cursor: pointer;
  background-color: #F4F7FB; /* Background */
  user-select: none;
  list-style: none;
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2F6BFF; /* Primary color */
  transition: transform 0.3s ease;
}

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

.page-gdpr__faq-answer {
  padding: 20px 25px;
  font-size: 0.95em;
  color: #1F2D3D; /* Text Main */
  border-top: 1px solid #D6E2FF; /* Border color */
}

.page-gdpr__faq-answer p {
  margin-bottom: 0;
}

/* General image and container responsive styles */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-gdpr__section,
.page-gdpr__card,
.page-gdpr__container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.2em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__hero-content {
    margin-top: -60px;
  }
  .page-gdpr__grid-item {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-gdpr__container {
    padding: 15px;
  }
  .page-gdpr__hero-section {
    padding-top: 10px !important; /* HERO top spacing */
    padding-bottom: 20px;
  }
  .page-gdpr__hero-image-container {
    max-height: 400px;
  }
  .page-gdpr__hero-content {
    margin-top: -40px; /* Adjust overlap for smaller screens */
    padding: 15px;
  }
  .page-gdpr__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .page-gdpr__hero-description {
    font-size: 0.95em;
    margin-bottom: 20px;
  }
  .page-gdpr__cta-button,
  .page-gdpr__cta-button--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-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  .page-gdpr__text-block {
    font-size: 0.9em;
  }
  .page-gdpr__grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__grid-item {
    padding: 15px;
  }
  .page-gdpr__feature-image {
    min-width: unset;
    min-height: unset;
  }
  .page-gdpr__rights-list .page-gdpr__list-item {
    padding: 20px;
  }
  .page-gdpr__full-width-image {
    min-width: unset;
    min-height: unset;
  }
  .page-gdpr__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-gdpr__faq-answer {
    padding: 15px 20px;
    font-size: 0.9em;
  }
  /* Universal image and container responsive styles for mobile */
  .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;
  }
  .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: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column; 
  }
}