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

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px);
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
}

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

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

.page-gdpr__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-gdpr__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-gdpr__button--register:hover {
  background-color: #F0F0F0;
}

.page-gdpr__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-gdpr__button--login:hover {
  background-color: #E6A83C;
}

.page-gdpr__button--support {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 20px;
}

.page-gdpr__button--support:hover {
  background-color: #E6A83C;
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.page-gdpr__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

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

.page-gdpr__principle-card {
  background-color: #F8F8F8;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-gdpr__principle-image {
  width: 100%;
  height: auto;
  max-width: 400px; 
  min-width: 200px; 
  min-height: 200px; 
  border-radius: 4px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-gdpr__principle-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-gdpr__principle-description {
  color: #666666;
}

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

.page-gdpr__right-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-gdpr__right-icon {
  width: 200px; 
  height: 150px; 
  min-width: 200px; 
  min-height: 200px; 
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 4px;
}

.page-gdpr__right-title {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-gdpr__right-description {
  color: #666666;
}

.page-gdpr__rights-action-text {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  font-weight: bold;
  color: #000000;
}

.page-gdpr__security-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-gdpr__security-image {
  flex: 1 1 500px;
  max-width: 100%;
  height: auto;
  min-width: 200px; 
  min-height: 200px; 
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__security-list {
  flex: 1 1 300px;
  list-style: none;
  padding: 0;
}

.page-gdpr__security-item {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 4px;
  color: #333333;
}

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

.page-gdpr__contact-info {
  text-align: center;
  margin-top: 30px;
}

.page-gdpr__contact-detail {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #333333;
}

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

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

.page-gdpr__related-links-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #000000;
}

.page-gdpr__related-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.page-gdpr__related-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 15px;
  border: 1px solid #FCBC45;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__related-link:hover {
  background-color: #FCBC45;
  color: #000000;
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }

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

  .page-gdpr__hero-actions {
    flex-direction: column;
  }

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

  .page-gdpr__security-details {
    flex-direction: column;
  }
  
  .page-gdpr__security-image, .page-gdpr__principle-image, .page-gdpr__right-icon {
    max-width: 100%;
    width: auto; /* Allow width to be determined by max-width */
    height: auto; /* Maintain aspect ratio */
    min-width: 200px !important;
    min-height: 200px !important;
  }
  
  .page-gdpr__principles-grid, .page-gdpr__rights-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-content {
    padding: 20px 15px;
  }

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

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

  .page-gdpr__button {
    width: 100%;
  }
}