.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #f8f8f8;
}

.page-gdpr__hero-section {
  background-color: #2D3E50;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  padding-top: var(--header-offset, 120px);
}

.page-gdpr__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #E74C3C; /* Accent color for title */
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-gdpr__content-area {
  padding: 60px 20px;
}

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #2D3E50;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #E74C3C;
  padding-bottom: 15px;
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: #2D3E50;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-gdpr p {
  margin-bottom: 15px;
  line-height: 1.7;
}

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

.page-gdpr__list li {
  margin-bottom: 10px;
  color: #555555;
}

.page-gdpr__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-gdpr__main-image,
.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__contact-info {
  background-color: #f0f4f7;
  border-left: 5px solid #E74C3C;
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 4px;
}

.page-gdpr__contact-info p {
  margin: 5px 0;
}

.page-gdpr__contact-info a {
  color: #E74C3C;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-info a:hover {
  text-decoration: underline;
}

.page-gdpr__cta-section {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #2D3E50;
  color: #ffffff;
  border-radius: 8px;
}

.page-gdpr__cta-section p {
  font-size: 1.1em;
  margin-bottom: 25px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: #E74C3C;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__cta-button:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px !important;
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset for mobile */
  }

  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
  }

  .page-gdpr__content-area {
    padding: 30px 15px;
  }

  .page-gdpr__container {
    padding: 20px;
  }

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

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

  .page-gdpr p {
    font-size: 0.95em;
  }

  .page-gdpr__list {
    margin-left: 15px;
  }

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

  .page-gdpr__cta-section {
    padding: 20px;
    margin-top: 30px;
  }

  .page-gdpr__cta-section p {
    font-size: 1em;
  }

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

  /* Image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Specific padding adjustment for the main container within content area */
  .page-gdpr__content-area .page-gdpr__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}