.page-gdpr {
  color: #ffffff; /* Text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  padding-top: var(--header-offset, 120px);
  text-align: center;
  background-color: #1A202C;
  overflow: hidden;
}

.page-gdpr__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

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

.page-gdpr__description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #E53E3E;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4);
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background-color: #d03030;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 62, 62, 0.6);
}

.page-gdpr__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #E53E3E;
  color: #E53E3E;
  box-shadow: none;
}

.page-gdpr__cta-button--secondary:hover {
  background-color: #E53E3E;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4);
}

.page-gdpr__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.2;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%);
}

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #0a0a0a; /* Default dark background */
  color: #ffffff;
}

.page-gdpr__dark-bg {
  background-color: #1A202C;
  color: #ffffff;
}

.page-gdpr__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #E53E3E;
}

.page-gdpr__section-title--light {
  color: #E53E3E;
}

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

.page-gdpr__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

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

.page-gdpr__sub-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #E53E3E;
}

.page-gdpr__sub-title--light {
  color: #f0f0f0;
}

.page-gdpr p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #f0f0f0;
}

.page-gdpr__description--light {
  color: #cccccc;
}

.page-gdpr__text-light {
  color: #cccccc;
}

.page-gdpr__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__image-center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

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

.page-gdpr__right-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-gdpr__security-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-gdpr__security-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.page-gdpr__contact-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

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

.page-gdpr__cta-center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.page-gdpr__update-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  margin: 40px auto 0;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 40px;
  }

  .page-gdpr__section-title {
    font-size: 30px;
  }

  .page-gdpr__sub-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__main-title {
    font-size: 32px;
  }

  .page-gdpr__description {
    font-size: 16px;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

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

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

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

  .page-gdpr__sub-title {
    font-size: 20px;
  }

  .page-gdpr p {
    font-size: 15px;
  }

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

  .page-gdpr__image-wrapper {
    order: -1; /* Image appears above text on mobile */
  }

  .page-gdpr__rights-grid,
  .page-gdpr__contact-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__image-center {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__update-card {
    padding: 20px;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 28px;
  }

  .page-gdpr__section-title {
    font-size: 22px;
  }

  .page-gdpr__cta-buttons {
    gap: 10px;
  }
}