.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); /* Ensure space for fixed header */
}

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

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

.page-gdpr__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-gdpr__hero-content {
  max-width: 800px;
}

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

.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: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

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

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

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

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

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

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

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

.page-gdpr__principles-section,
.page-gdpr__security-section,
.page-gdpr__rights-section,
.page-gdpr__contact-section,
.page-gdpr__policy-links {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-gdpr__principles-section {
  background-color: #f9f9f9;
}

.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: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

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

.page-gdpr__item-text {
  color: #555555;
  font-size: 0.95em;
}

.page-gdpr__security-details,
.page-gdpr__rights-details {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-gdpr__security-details:nth-child(even),
.page-gdpr__rights-details:nth-child(even) {
  flex-direction: row-reverse;
}

.page-gdpr__security-image,
.page-gdpr__rights-image,
.page-gdpr__contact-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__security-list,
.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  flex: 1;
}

.page-gdpr__security-item,
.page-gdpr__rights-item {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 5px solid #FCBC45;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  font-size: 1em;
  color: #333333;
}

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

.page-gdpr__rights-callout {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  font-style: italic;
  color: #555555;
}

.page-gdpr__contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-gdpr__contact-info {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: 500px;
  width: 100%;
}

.page-gdpr__contact-text {
  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__button--contact {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 20px;
}

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

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

.page-gdpr__links-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__links-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__link {
  display: block;
  padding: 15px 25px;
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  font-size: 1.05em;
}

.page-gdpr__link:hover {
  color: #FCBC45;
}

@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1.1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__security-details,
  .page-gdpr__rights-details {
    flex-direction: column;
    text-align: center;
  }
  .page-gdpr__security-details:nth-child(even),
  .page-gdpr__rights-details:nth-child(even) {
    flex-direction: column;
  }
  .page-gdpr__security-list,
  .page-gdpr__rights-list {
    text-align: left;
  }
  .page-gdpr__security-image,
  .page-gdpr__rights-image,
  .page-gdpr__contact-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-gdpr__content-area {
    padding: 30px 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__section-intro {
    font-size: 0.95em;
  }
  .page-gdpr__grid-item {
    padding: 25px;
  }
  .page-gdpr__item-title {
    font-size: 1.2em;
  }
  .page-gdpr__item-text {
    font-size: 0.9em;
  }
  .page-gdpr__security-image,
  .page-gdpr__rights-image,
  .page-gdpr__contact-image {
    width: 100%;
    height: auto;
    max-width: 100%; /* Ensure images don't overflow */
    min-width: 200px;
    min-height: 200px;
  }
  .page-gdpr__security-list,
  .page-gdpr__rights-list {
    padding-left: 0;
  }
  .page-gdpr__links-list {
    flex-direction: column;
    align-items: center;
  }
  .page-gdpr__links-item {
    width: 90%;
  }
  /* Content area image size constraint */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}