.page-gdpr {
  color: #333333; /* Dark text on light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

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

.page-gdpr__hero-section {
  background-color: #000000; /* Main color as background */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

.page-gdpr__button--register {
  background-color: #FCBC45; /* Login color for primary CTA */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #FCBC45;
}

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

.page-gdpr__button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-gdpr__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

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

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

.page-gdpr__principles-section,
.page-gdpr__rights-section,
.page-gdpr__contact-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.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: #f9f9f9;
  border-radius: 10px;
  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 6px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__principle-icon {
  width: 250px; /* Minimum 200px */
  height: 187px; /* Maintain aspect ratio for 400x300 display */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
}

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

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

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

.page-gdpr__right-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__right-icon {
  flex-shrink: 0;
  width: 200px; /* Minimum 200px */
  height: 133px; /* Maintain aspect ratio for 300x200 display */
  object-fit: cover;
  border-radius: 5px;
}

.page-gdpr__item-content {
  flex-grow: 1;
}

.page-gdpr__item-title {
  font-size: 1.4em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

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

.page-gdpr__contact-section {
  text-align: center;
  background-color: #000000; /* Main color as background */
  color: #ffffff;
}

.page-gdpr__contact-section .page-gdpr__section-title {
  color: #ffffff;
}

.page-gdpr__contact-section .page-gdpr__section-intro {
  color: #f0f0f0;
}

.page-gdpr__button--contact {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text */
  border: 2px solid #FCBC45;
  margin-top: 30px;
}

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

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

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

  .page-gdpr__hero-description {
    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__section-title {
    font-size: 1.8em;
  }

  .page-gdpr__section-intro {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

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

  .page-gdpr__principle-card,
  .page-gdpr__right-item {
    padding: 20px;
  }

  .page-gdpr__principle-icon,
  .page-gdpr__right-icon {
    width: 100%; /* Ensure images are responsive */
    height: auto; /* Ensure images are responsive */
    max-width: 100%; /* Mobile content area image prevention overflow */
  }

  .page-gdpr__right-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-gdpr__item-title {
    margin-top: 15px;
  }

  /* Ensure no horizontal scroll */
  .page-gdpr {
    overflow-x: hidden;
  }
}