.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A2463 0%, #3a5c9a 100%);
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

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

.page-gdpr__subtitle {
  font-size: 1.4em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

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

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

.page-gdpr__section--alt {
  background-color: #f0f4f8;
}

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

.page-gdpr__section p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 15px;
  text-align: justify;
}

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

.page-gdpr__right-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-gdpr__right-item p {
  font-size: 1em;
  color: #555;
  text-align: left;
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 20px;
  margin-top: 20px;
}

.page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444;
}

.page-gdpr__list strong {
  color: #0A2463;
}

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

.page-gdpr__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%; /* Adjust as needed */
}

.page-gdpr__image--right {
  float: right;
  margin-left: 20px;
  width: 40%; /* Adjust as needed */
}

.page-gdpr__image--left {
  float: left;
  margin-right: 20px;
  width: 40%; /* Adjust as needed */
}

.page-gdpr__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  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__button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2.5em;
  }
  .page-gdpr__subtitle {
    font-size: 1.2em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__image--right, .page-gdpr__image--left {
    float: none;
    margin: 30px auto;
    width: 80%;
  }
  .page-gdpr__image--centered {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 2em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}