.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark grey for readability */
  background-color: #f8f8f8; /* Light grey background */
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #003366, #1a4d80); /* Deep blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

.page-gdpr__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #FFCC00; /* Golden yellow */
  color: #003366; /* Deep blue text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFCC00;
}

.page-gdpr__button:hover {
  background-color: #e6b800; /* Slightly darker yellow on hover */
  color: #002244; /* Darker blue on hover */
  border-color: #e6b800;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #eeeeee;
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

.page-gdpr__heading {
  font-size: 2.5em;
  color: #003366; /* Deep blue */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__section p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #333333; /* Dark grey */
  text-align: justify;
}

.page-gdpr__section ul,
.page-gdpr__section ol {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333333;
}

.page-gdpr__section ol {
  list-style-type: decimal;
}

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

.page-gdpr__section strong {
  color: #003366;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__link {
  color: #003366; /* Deep blue for links */
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__link:hover {
  text-decoration: underline;
  color: #FFCC00; /* Golden yellow on hover */
}

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

  .page-gdpr__heading {
    font-size: 2em;
  }

  .page-gdpr__subtitle,
  .page-gdpr__section p,
  .page-gdpr__section ul,
  .page-gdpr__section ol {
    font-size: 1em;
  }

  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 2em;
  }

  .page-gdpr__heading {
    font-size: 1.8em;
  }

  .page-gdpr__hero {
    padding: 60px 0;
  }

  .page-gdpr__section {
    padding: 40px 0;
  }

  .page-gdpr__container {
    padding: 15px;
  }
}