.page-gdpr {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
  background-color: #FFFFFF;
}

.page-gdpr__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  font-weight: bold;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1200px; /* Adjust based on container width */
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__button--register, .page-gdpr__button--login {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
}

.page-gdpr__button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-gdpr__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-gdpr__button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-gdpr__button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-gdpr__button--contact {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.page-gdpr__button--contact:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-gdpr__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-gdpr__what-is-gdpr, .page-gdpr__okbet-commitment, .page-gdpr__your-rights, .page-gdpr__how-we-secure, .page-gdpr__cookies-policy, .page-gdpr__contact-dpo, .page-gdpr__updates, .page-gdpr__conclusion {
  background-color: #FFFFFF;
  border-bottom: 1px solid #eeeeee;
}

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

.page-gdpr__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__content-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 800px; /* Ensures image doesn't overflow */
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__commitment-item, .page-gdpr__right-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FCBC45;
}

.page-gdpr__item-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__item-description {
  font-size: 1em;
  color: #555555;
}

.page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__security-item {
  background-color: #f9f9f9;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  border-left: 3px solid #000000;
  font-size: 1.05em;
  color: #333333;
}

.page-gdpr__security-item strong {
  color: #000000;
}

.page-gdpr__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__link:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }

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

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

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

  .page-gdpr__section-text {
    font-size: 0.95em;
  }

  .page-gdpr__commitment-grid, .page-gdpr__rights-list {
    grid-template-columns: 1fr;
  }

  /* Mandatory: Ensure content images do not overflow on mobile */
  .page-gdpr__hero-image, .page-gdpr__content-image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure all img within .page-gdpr are responsive and not smaller than 200px */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size if not already larger */
    min-height: 200px; /* Enforce minimum size if not already larger */
  }
}