.page-gdpr {
  color: #333333; /* Dark text for light body background */
}

.page-gdpr__hero-section {
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF;
  padding: var(--header-offset, 120px) 20px 60px; /* Top padding for header offset */
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-gdpr__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0 10px;
}

.page-gdpr__hero-button--register {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-gdpr__hero-button--register:hover {
  background-color: #e0a73b;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

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

.page-gdpr__section-title {
  font-size: 2.8rem;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-gdpr__section-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

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

.page-gdpr__principle-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-gdpr__principle-icon {
  width: 200px; /* Min size 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__card-title {
  font-size: 1.6rem;
  color: #000000;
  margin-bottom: 15px;
}

.page-gdpr__card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.page-gdpr__user-rights-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.page-gdpr__rights-item {
  background-color: #FFFFFF;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-gdpr__rights-heading {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 10px;
}

.page-gdpr__rights-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.page-gdpr__contact-cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.page-gdpr__cta-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0 10px;
}

.page-gdpr__cta-button--support {
  background-color: #000000;
  color: #FFFFFF;
}

.page-gdpr__cta-button--support:hover {
  background-color: #333333;
}

.page-gdpr__cta-button--policy {
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #000000;
}

.page-gdpr__cta-button--policy:hover {
  background-color: #f0f0f0;
}

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

.page-gdpr__info-links {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__info-link {
  display: inline-block;
  margin: 0 15px;
  font-size: 1.1rem;
  color: #FCBC45;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.page-gdpr__info-link:hover {
  color: #e0a73b;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 3rem;
  }
  .page-gdpr__section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: var(--header-offset, 120px) 15px 40px;
  }
  .page-gdpr__hero-title {
    font-size: 2.5rem;
  }
  .page-gdpr__hero-description {
    font-size: 1.1rem;
  }
  .page-gdpr__hero-button {
    padding: 12px 25px;
    font-size: 1rem;
    margin: 10px 5px;
  }
  .page-gdpr__content-area {
    padding: 30px 15px;
  }
  .page-gdpr__section-title {
    font-size: 2rem;
  }
  .page-gdpr__section-intro {
    font-size: 1rem;
  }
  .page-gdpr__principles-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__rights-list {
    grid-template-columns: 1fr;
  }
  .page-gdpr__principle-icon {
    max-width: 100%; /* Ensures it doesn't overflow */
    min-width: 200px; /* Maintain minimum size */
    height: auto;
  }
  .page-gdpr__cta-button {
    display: block;
    margin: 15px auto;
  }
  .page-gdpr__info-link {
    display: block;
    margin: 10px 0;
  }
  /* Ensure all content images are responsive and not too small */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 2rem;
  }
  .page-gdpr__section-title {
    font-size: 1.8rem;
  }
  .page-gdpr__principle-card {
    padding: 20px;
  }
  .page-gdpr__rights-item {
    padding: 20px;
  }
}