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

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

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

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFC107; /* Highlight with auxiliary color */
  font-weight: bold;
}

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

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

.page-gdpr__section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-gdpr__section:nth-of-type(even) {
  background-color: #eef2f7; /* Light background for contrast */
}

.page-gdpr__section--dark {
  background-color: #1A237E;
  color: #fff;
}

.page-gdpr__section--dark .page-gdpr__section-title,
.page-gdpr__section--dark h3 {
  color: #FFC107;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #1A237E;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFC107;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr__intro-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #555;
}

.page-gdpr__section--dark .page-gdpr__intro-text {
  color: #e0e0e0;
}

.page-gdpr__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-gdpr__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-gdpr__content-grid:nth-child(odd) .page-gdpr__image-wrapper {
    order: 2;
  }
  .page-gdpr__content-grid:nth-child(odd) .page-gdpr__text-block {
    order: 1;
  }
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-gdpr__image-wrapper {
  text-align: center;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__commitment-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-gdpr__commitment-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__commitment-item h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #FFC107;
}

.page-gdpr__commitment-item p {
  font-size: 0.95em;
  color: #e0e0e0;
}

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

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

.page-gdpr__right-item:hover {
  border-left-color: #FFC107;
}

.page-gdpr__right-item h4 {
  font-size: 1.25em;
  color: #1A237E;
  margin-bottom: 10px;
}

.page-gdpr__right-item p {
  font-size: 0.9em;
  color: #666;
}

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

.page-gdpr__section--cta {
  background: linear-gradient(135deg, #1A237E, #3f479a);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

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

.page-gdpr__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #FFC107;
  color: #1A237E;
  padding: 15px 30px;
  border-radius: 5px;
  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__button:hover {
  background-color: #e5b006;
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 767px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-gdpr__intro-text {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-gdpr__commitment-grid,
  .page-gdpr__rights-grid {
    gap: 20px;
  }
  .page-gdpr__commitment-item,
  .page-gdpr__right-item {
    padding: 20px;
  }
  .page-gdpr__commitment-item h3 {
    font-size: 1.2em;
  }
  .page-gdpr__right-item h4 {
    font-size: 1.1em;
  }
  .page-gdpr__cta-title {
    font-size: 1.8em;
  }
  .page-gdpr__cta-description {
    font-size: 1em;
  }
  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}