.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 {
  padding-top: 10px;
  padding-bottom: 40px;
  background-color: #F4F7FB;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

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

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

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  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, #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: #e0eaff;
  color: #2F6BFF;
  border-color: #2F6BFF;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-gdpr__section:last-of-type {
  margin-bottom: 0;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #2F6BFF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: #1F2D3D;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-gdpr__text-block {
  font-size: 1.05em;
  color: #1F2D3D;
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-gdpr__text-block a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__text-block a:hover {
  text-decoration: underline;
}

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

.page-gdpr__card {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.page-gdpr__card-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
  display: block;
}

.page-gdpr__card-title {
  font-size: 1.4em;
  color: #2F6BFF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__card-description {
  font-size: 0.95em;
  color: #1F2D3D;
  line-height: 1.6;
}

.page-gdpr__feature-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  padding: 30px;
  background-color: #F4F7FB;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-gdpr__feature-block--reverse {
  flex-direction: row-reverse;
}

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

.page-gdpr__feature-image-wrapper {
  flex: 1;
  max-width: 50%;
  overflow: hidden;
  border-radius: 8px;
}

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

.page-gdpr__feature-title {
  font-size: 2em;
  color: #2F6BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__feature-description {
  font-size: 1.05em;
  color: #1F2D3D;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-gdpr__btn-text {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.page-gdpr__btn-text:hover {
  text-decoration: underline;
  color: #0047b3;
}

.page-gdpr__list,
.page-gdpr__list-icon,
.page-gdpr__list-columns {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-gdpr__list-item {
  font-size: 1.05em;
  color: #1F2D3D;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
}

.page-gdpr__list-item::before {
  content: '•';
  color: #2F6BFF;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-gdpr__list-icon .page-gdpr__list-item {
  padding-left: 40px;
}

.page-gdpr__list-icon .page-gdpr__icon {
  position: absolute;
  left: 0;
  color: #2F6BFF;
  font-size: 1.2em;
  top: 0;
}

.page-gdpr__list-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-gdpr__faq-section {
  background-color: #F4F7FB;
  padding: 60px 0;
}

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

.page-gdpr__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.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;
  cursor: pointer;
  list-style: none;
}

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

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  color: #2F6BFF;
  margin-left: 15px;
  line-height: 1;
  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 25px;
  font-size: 1em;
  color: #1F2D3D;
  line-height: 1.6;
}

.page-gdpr__conclusion {
  text-align: center;
  background-color: #ffffff;
}

.page-gdpr__conclusion .page-gdpr__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Mobile Responsive Styles (max-width: 768px) --- */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-gdpr__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

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

  .page-gdpr__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

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

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

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

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

  .page-gdpr__sub-title {
    font-size: 1.5em;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-gdpr__text-block {
    font-size: 0.95em;
  }

  .page-gdpr__grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__card-title {
    font-size: 1.2em;
  }

  .page-gdpr__feature-block {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
  }

  .page-gdpr__feature-block--reverse {
    flex-direction: column;
  }

  .page-gdpr__feature-image-wrapper {
    max-width: 100%;
  }

  .page-gdpr__feature-title {
    font-size: 1.6em;
  }

  .page-gdpr__feature-description {
    font-size: 0.95em;
  }

  .page-gdpr__list-item {
    font-size: 0.95em;
  }

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

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

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

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

  /* General image and container responsiveness for mobile */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__feature-image-wrapper,
  .page-gdpr__card-image,
  .page-gdpr__hero-section,
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__feature-block,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__feature-image-wrapper,
  .page-gdpr__card-image {
    padding-left: 0;
    padding-right: 0;
  }
}

/* --- Tablet Responsive Styles (max-width: 1024px) --- */
@media (max-width: 1024px) and (min-width: 769px) {
  .page-gdpr__container {
    padding: 20px 30px;
  }

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

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

  .page-gdpr__sub-title {
    font-size: 1.6em;
  }

  .page-gdpr__grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .page-gdpr__feature-block {
    flex-direction: column;
    gap: 30px;
  }

  .page-gdpr__feature-block--reverse {
    flex-direction: column;
  }

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