.page-gdpr {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 0;
}

.page-gdpr__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

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

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

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

.page-gdpr__button--register {
  background-color: #ffffff; /* Custom color for Register */
  color: #000000;
}

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

.page-gdpr__button--learn-more {
  background-color: #FCBC45; /* Custom color for Login */
  color: #000000;
}

.page-gdpr__button--learn-more:hover {
  background-color: #e0a538;
  color: #000000;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FCBC45;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
}

.page-gdpr__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-gdpr__section-text {
  font-size: 1em;
  margin-bottom: 40px;
  color: #cccccc;
  text-align: justify;
}

.page-gdpr__overview-section, .page-gdpr__principles-section, .page-gdpr__rights-section, .page-gdpr__security-section, .page-gdpr__contact-section, .page-gdpr__further-reading-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__overview-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__image {
  margin: 40px auto;
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-gdpr__image--right {
  float: right;
  margin-left: 40px;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 40px;
}

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

.page-gdpr__grid-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__grid-title {
  font-size: 1.5em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-gdpr__grid-text {
  font-size: 0.95em;
  color: #cccccc;
}

.page-gdpr__rights-section .page-gdpr__flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 40px;
}

.page-gdpr__right-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  flex: 1 1 calc(33% - 25px);
  min-width: 280px;
  transition: background-color 0.3s ease;
}

.page-gdpr__right-card:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

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

.page-gdpr__card-text {
  font-size: 0.9em;
  color: #cccccc;
}

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

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

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

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

.page-gdpr__security-list-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FCBC45;
}

.page-gdpr__list-title {
  font-size: 1.4em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-gdpr__list-text {
  font-size: 0.95em;
  color: #cccccc;
}

.page-gdpr__contact-info {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__contact-detail a {
  color: #FCBC45;
  text-decoration: none;
}

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

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

.page-gdpr__button--contact:hover {
  background-color: #e0a538;
}

.page-gdpr__resource-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 600px;
  text-align: center;
}

.page-gdpr__resource-item {
  margin-bottom: 15px;
}

.page-gdpr__resource-item a {
  color: #FCBC45;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-gdpr__resource-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-gdpr__closing-statement {
  text-align: center;
  margin-top: 50px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FCBC45;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2.2em;
  }
  .page-gdpr__image--right, .page-gdpr__image--left {
    float: none;
    margin: 40px auto;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-intro {
    font-size: 1em;
  }
  .page-gdpr__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-gdpr__principles-section .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__right-card {
    flex: 1 1 100%;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  /* Mobile content image constraint */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-content {
    padding: 40px 15px;
  }
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__button {
    font-size: 1em;
    padding: 12px 25px;
  }
}