.page-gdpr {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px);
  position: relative;
  background-color: #1A1A1A;
  color: #ffffff;
  text-align: center;
  padding-bottom: 40px;
  overflow: hidden;
}

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

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

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

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #DAA520;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px;
}

.page-gdpr__hero-button:hover {
  background-color: #e5c063;
  color: #000000;
}

.page-gdpr__principles-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.page-gdpr__principles-container,
.page-gdpr__rights-container,
.page-gdpr__contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-gdpr__principles-title,
.page-gdpr__rights-title,
.page-gdpr__contact-title {
  font-size: 2.5em;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 20px;
}

.page-gdpr__principles-intro,
.page-gdpr__rights-intro,
.page-gdpr__contact-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__card:hover {
  transform: translateY(-10px);
}

.page-gdpr__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-gdpr__card-text {
  font-size: 1em;
  color: #555555;
}

.page-gdpr__rights-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.page-gdpr__rights-item {
  background-color: #f0f0f0;
  border-left: 5px solid #DAA520;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.05em;
}

.page-gdpr__rights-item strong {
  color: #1A1A1A;
}

.page-gdpr__rights-button {
  display: block;
  width: fit-content;
  margin: 0 auto 40px auto;
  background-color: #1A1A1A;
  color: #DAA520;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px;
}

.page-gdpr__rights-button:hover {
  background-color: #333333;
  color: #e5c063;
}

.page-gdpr__contact-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #DAA520;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
  min-width: 200px;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__principles-title,
  .page-gdpr__rights-title,
  .page-gdpr__contact-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 120px);
    padding: 40px 15px;
  }
  .page-gdpr__hero-container {
    padding: 60px 15px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__principles-section,
  .page-gdpr__rights-section,
  .page-gdpr__contact-section {
    padding: 40px 15px;
  }
  .page-gdpr__principles-title,
  .page-gdpr__rights-title,
  .page-gdpr__contact-title {
    font-size: 1.8em;
  }
  .page-gdpr__principle-cards {
    grid-template-columns: 1fr;
  }
  .page-gdpr__rights-list {
    grid-template-columns: 1fr;
  }
  /* Ensure content images do not cause horizontal scrolling */
  .page-gdpr__card-image,
  .page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr {
    max-width: 100%;
    overflow-x: hidden;
  }
}