.page-gdpr {
  color: #333333; /* Dark text for light body background */
}

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  background-color: #f0f0f0;
  padding-bottom: 40px;
  text-align: center;
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%; /* Ensure responsiveness */
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__main-title {
  font-size: 2.8em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-gdpr__intro-description {
  font-size: 1.1em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  transform: translateY(-40px);
  position: relative;
  z-index: 1;
}

.page-gdpr__section-header {
  text-align: center;
  margin-bottom: 50px;
}

.page-gdpr__section-header--rights {
  margin-top: 60px;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__section-description {
  font-size: 1.05em;
  color: #666666;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.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: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px 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 5px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__principle-icon {
  width: 100px; /* Base width */
  height: 100px; /* Base height */
  margin-bottom: 20px;
  object-fit: contain;
  max-width: 100%;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__principle-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-gdpr__principle-text {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-gdpr__rights-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
}

.page-gdpr__rights-title {
  font-size: 1.3em;
  color: #8B0000;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-gdpr__rights-text {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

.page-gdpr__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #8B0000;
  text-decoration: underline;
}

.page-gdpr__contact-section,
.page-gdpr__cta-section {
  text-align: center;
  padding: 50px 0;
  margin-top: 60px;
  border-top: 1px solid #eee;
}

.page-gdpr__contact-title,
.page-gdpr__cta-title {
  font-size: 2em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__contact-description,
.page-gdpr__cta-description {
  font-size: 1.1em;
  color: #666666;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.page-gdpr__contact-button,
.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-gdpr__contact-button:hover,
.page-gdpr__cta-button:hover {
  background-color: #8B0000;
  color: #FFD700;
  border-color: #8B0000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__main-title {
    font-size: 2em;
  }
  .page-gdpr__intro-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__principles-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__principle-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
  }
  .page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__content-area img {
    max-width: 100%;
    height: auto;
  }
}