.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 content is not hidden by fixed header */
}

.page-gdpr__hero-section {
  background-color: #000000; /* Main brand color for hero background */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color for CTA */
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__hero-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

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

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

.page-gdpr__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #444444;
}

.page-gdpr__principles-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-gdpr__principles-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  padding: 25px;
  border-radius: 10px;
  font-size: 1em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-gdpr__principles-item strong {
  color: #000000;
  font-size: 1.1em;
  display: block;
  margin-bottom: 10px;
}

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

.page-gdpr__rights-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.page-gdpr__rights-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.page-gdpr__rights-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-gdpr__rights-card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-gdpr__rights-card-description {
  font-size: 1em;
  color: #555555;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #FCBC45; /* Default button color */
  color: #000000;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.05em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
  border: none;
  cursor: pointer;
}

.page-gdpr__button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-gdpr__button--secondary {
  background-color: #000000;
  color: #FFFFFF;
  margin-left: 15px;
}

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

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

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

.page-gdpr__processing-section {
  background-color: #f0f0f0;
  padding: 80px 20px;
}

.page-gdpr__processing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.page-gdpr__processing-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gdpr__processing-text-content {
  text-align: left;
}

.page-gdpr__consent-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-gdpr__contact-section {
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
}

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

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

/* Responsive Design */
@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: 2em;
  }

  .page-gdpr__section-text {
    font-size: 0.95em;
  }

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

  .page-gdpr__processing-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-gdpr__processing-text-content {
    order: 2;
  }

  .page-gdpr__processing-image {
    order: 1;
    max-width: 100%;
    height: auto;
  }

  .page-gdpr__button {
    display: block;
    margin: 20px auto;
    width: calc(100% - 40px);
  }

  .page-gdpr__button--secondary {
    margin-left: auto;
  }

  /* Mobile content area image constraint */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}