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

.page-gdpr__hero-section {
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding to prevent double header offset */
  text-align: center;
  background-color: #f8f8f8;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.page-gdpr__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__main-title {
  font-size: clamp(1.5rem, 4vw, 2rem); /* Adjusted font size for H1 */
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-gdpr__subtitle {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #333333;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-gdpr__section-title {
  font-size: 2rem;
  color: #8B0000;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__section-description {
  font-size: 1.05rem;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__grid-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-gdpr__item-title {
  font-size: 1.5rem;
  color: #8B0000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__item-text {
  font-size: 1rem;
  color: #666666;
}

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

.page-gdpr__rights-list-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #444444;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  padding-left: 40px;
}

.page-gdpr__rights-list-item::before {
  content: '✔';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #8B0000;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.page-gdpr__contact-button:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
}

.page-gdpr__support-link {
  display: inline-block;
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.page-gdpr__support-link:hover {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.5rem, 8vw, 1.8rem);
  }

  .page-gdpr__section-title {
    font-size: 1.8rem;
  }

  .page-gdpr__hero-image img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure images in content areas are responsive */
  .page-gdpr__content-area img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__cta-button, .page-gdpr__contact-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .page-gdpr__section-title {
    font-size: 1.5rem;
  }

  .page-gdpr__item-title {
    font-size: 1.3rem;
  }

  .page-gdpr__rights-list-item {
    font-size: 1rem;
    padding: 12px 15px 12px 35px;
  }
}

/* Mobile content area images responsiveness and minimum size */
@media (max-width: 768px) {
  .page-gdpr__content-area img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-gdpr__grid-image {
    min-width: 200px;
    min-height: 200px;
  }
}