.page-gdpr {
  color: #ffffff; /* Text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #0A1931, #0D1F3F);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

.page-gdpr__highlight {
  color: #FFD700;
}

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

.page-gdpr__hero-button,
.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-gdpr__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

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

.page-gdpr__card:hover,
.page-gdpr__measure-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__card-image,
.page-gdpr__measure-image {
  width: 100%; /* Ensure images are not small icons */
  max-width: 400px; /* Example max width */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

.page-gdpr__card-description,
.page-gdpr__measure-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-gdpr__user-rights-section {
  padding: 60px 20px;
  background-color: #0A1931;
}

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

.page-gdpr__right-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-gdpr__right-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-gdpr__right-description {
  font-size: 0.95em;
  color: #cccccc;
}

.page-gdpr__compliance-measures-section {
  padding: 60px 20px;
  background-color: #0D1F3F;
}

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

.page-gdpr__section-description {
  font-size: 1.1em;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__contact-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-gdpr__contact-list a {
  color: #FFD700;
  text-decoration: none;
}

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

.page-gdpr__contact-button {
  display: inline-block;
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__contact-button:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-gdpr__cta-bottom-section {
  background: linear-gradient(45deg, #0D1F3F, #0A1931);
  padding: 80px 20px;
  text-align: center;
  border-top: 2px solid #FFD700;
}

.page-gdpr__cta-title {
  font-size: 2.8em;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-gdpr__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__bold-text {
  font-weight: bold;
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__section-title,
  .page-gdpr__cta-title {
    font-size: 2em;
  }
  .page-gdpr__grid,
  .page-gdpr__measures-grid,
  .page-gdpr__rights-list {
    grid-template-columns: 1fr;
  }
  .page-gdpr__card,
  .page-gdpr__measure-item,
  .page-gdpr__right-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__hero-button,
  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__section-title,
  .page-gdpr__cta-title {
    font-size: 1.8em;
  }
}