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

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #26A9E0, #E0F7FA); /* Light blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF; /* White title on blue gradient */
  font-weight: bold;
}

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

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #EA7C07; /* Login color for CTA */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

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

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

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

.page-gdpr__principles-section {
  padding: 60px 0;
  background-color: #F8F8F8;
}

.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: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-gdpr__principle-card:hover {
  transform: translateY(-5px);
}

.page-gdpr__principle-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

.page-gdpr__rights-section {
  padding: 60px 0;
}

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

.page-gdpr__rights-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-gdpr__rights-item strong {
  color: #26A9E0;
}

.page-gdpr__inline-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__inline-link:hover {
  color: #1b769d;
  text-decoration: underline;
}

.page-gdpr__data-processing-section {
  padding: 60px 0;
  background-color: #F8F8F8;
}

.page-gdpr__data-processing-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-gdpr__data-processing-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__data-processing-text {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  font-size: 1.1em;
  color: #333333;
}

.page-gdpr__data-processing-text p {
  margin-bottom: 20px;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-right: 15px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.page-gdpr__button:hover {
  background-color: #1b769d;
}

.page-gdpr__button--secondary {
  background-color: #6c757d;
}

.page-gdpr__button--secondary:hover {
  background-color: #5a6268;
}

.page-gdpr__contact-section {
  padding: 60px 0 80px 0;
  text-align: center;
}

.page-gdpr__contact-info {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
  font-size: 1.1em;
}

.page-gdpr__contact-info li {
  margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
  }

  .page-gdpr__section-title {
    font-size: 2em;
  }

  .page-gdpr__principles-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__data-processing-content {
    flex-direction: column;
  }

  .page-gdpr__data-processing-image,
  .page-gdpr__data-processing-text {
    max-width: 100%;
  }

  .page-gdpr__button {
    margin-right: 0;
    width: 100%;
    box-sizing: border-box;
  }
}