.page-gdpr {
  color: #333333; /* Dark text for light 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: #FFFFFF; /* White background */
  padding: 80px 20px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__main-title {
  font-size: 3.2em;
  color: #000000; /* Primary color for title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-gdpr__intro-text {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 30px;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 180px;
  text-align: center;
}

.page-gdpr__button--register {
  background-color: #000000; /* Black for Register button */
  color: #FFFFFF; /* White text for Register button */
  border: 2px solid #000000;
}

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

.page-gdpr__button--login {
  background-color: #FCBC45; /* FCBC45 for Login button */
  color: #000000; /* Black text for Login button */
  border: 2px solid #FCBC45;
}

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

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

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-gdpr__section:nth-of-type(even) {
  background-color: #FFFFFF;
}

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

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

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

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

.page-gdpr__card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 800px;
}

.page-gdpr__rights-item {
  background-color: #FFFFFF;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px 25px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-gdpr__rights-item::before {
  content: '✓';
  color: #FCBC45;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.3em;
}

.page-gdpr__action-text {
  text-align: center;
  font-size: 1.1em;
  color: #555555;
  margin-top: 30px;
}

.page-gdpr__action-text a,
.page-gdpr__contact-info a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__action-text a:hover,
.page-gdpr__contact-info a:hover {
  color: #e0a53b;
  text-decoration: underline;
}

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

.page-gdpr__feature-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-gdpr__feature-icon {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  object-fit: cover;
}

.page-gdpr__feature-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__feature-text {
  font-size: 1em;
  color: #666666;
}

.page-gdpr__contact-info {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__contact-text {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 10px;
}

.page-gdpr__button--support {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 30px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: var(--header-offset, 120px);
  }
  .page-gdpr__hero-section {
    padding: 60px 15px 30px;
  }
  .page-gdpr__main-title {
    font-size: 2.2em;
  }
  .page-gdpr__intro-text {
    font-size: 1em;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__button {
    width: 100%;
    max-width: 300px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-description {
    font-size: 1em;
  }
  .page-gdpr__grid, .page-gdpr__features-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__rights-item {
    font-size: 0.95em;
    padding: 12px 20px;
  }
  .page-gdpr__rights-item::before {
    font-size: 1.1em;
  }

  /* Mobile content image constraint */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min size is still applied */
    min-height: 200px; /* Ensure min size is still applied */
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}