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

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

.page-gdpr__hero {
  background-color: #003366;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
}

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

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1em;
}

.page-gdpr__btn--primary {
  background-color: #FFD700;
  color: #003366;
  border: 2px solid #FFD700;
}

.page-gdpr__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

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

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

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

.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;
    text-align: left;
  }
  .page-gdpr__content-grid--reverse {
    grid-template-areas: "image text";
  }
  .page-gdpr__content-grid--reverse .page-gdpr__text-content {
    grid-area: text;
  }
  .page-gdpr__content-grid--reverse .page-gdpr__image-wrapper {
    grid-area: image;
  }
}

.page-gdpr__text-content p {
  margin-bottom: 15px;
  color: #444;
  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 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-gdpr__list li {
  background-color: #fff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 4px solid #003366;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #333;
}

.page-gdpr__list li strong {
  color: #003366;
}

.page-gdpr__image-wrapper--center {
  margin-top: 40px;
}

.page-gdpr__contact p {
  text-align: center;
  font-size: 1.1em;
  color: #444;
}

.page-gdpr__link {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr__link:hover {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__list li {
    font-size: 1em;
    padding: 12px 15px;
  }
}