.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 below fixed header */
}

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0; /* Remove padding as content is within hero-content */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

.page-gdpr__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
}

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

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

.page-gdpr__hero-button {
  display: inline-block;
  padding: 12px 25px;
  margin: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
}

.page-gdpr__hero-button--register {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

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

.page-gdpr__hero-button--learn-more {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.page-gdpr__hero-button--learn-more:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

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

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

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

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

.page-gdpr__commitment-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(252, 188, 69, 0.2);
}

.page-gdpr__commitment-heading {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-gdpr__commitment-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-gdpr__data-processing-section {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 60px 0;
  margin-top: 60px;
}

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

.page-gdpr__text-content {
  flex: 1;
  min-width: 300px;
}

.page-gdpr__text-content p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-gdpr__data-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-gdpr__data-list-item {
  margin-bottom: 10px;
}

.page-gdpr__data-list-item strong {
  color: #FCBC45;
}

.page-gdpr__image-wrapper {
  flex: 1;
  min-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-gdpr__user-rights-section {
  padding: 60px 0;
}

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

.page-gdpr__right-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__right-heading {
  font-size: 1.5em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-gdpr__right-text {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-gdpr__image-centered {
  text-align: center;
  margin-top: 50px;
}

.page-gdpr__contact-section {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 60px 0;
  text-align: center;
  margin-top: 60px;
}

.page-gdpr__contact-details {
  margin-top: 30px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-gdpr__contact-details p {
  margin-bottom: 10px;
}

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

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

.page-gdpr__contact-buttons {
  margin-top: 30px;
}

.page-gdpr__contact-button {
  display: inline-block;
  padding: 12px 25px;
  margin: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FCBC45;
  background-color: transparent;
  color: #FCBC45;
}

.page-gdpr__contact-button:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-gdpr__image-wrapper--contact {
  margin-top: 40px;
}

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

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

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

  .page-gdpr__content-grid {
    flex-direction: column;
  }

  .page-gdpr__image-wrapper,
  .page-gdpr__text-content {
    min-width: unset;
    width: 100%;
  }

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

  .page-gdpr__content-image {
    max-width: 100%;
    height: auto;
  }

  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-button {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}