.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark gray for body text for good contrast on light backgrounds */
}

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

.page-gdpr__hero {
  background-color: #003366; /* Deep blue main color */
  color: #ffffff; /* White text for contrast */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold accent for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__hero-image {
  position: absolute;
  bottom: -50px;
  right: -50px;
  opacity: 0.1;
  width: 300px;
  height: auto;
  z-index: 0;
}

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

.page-gdpr__section--alt-bg {
  background-color: #f5f5f5; /* Light gray for alternating sections */
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #003366; /* Deep blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Gold underline */
  margin: 15px auto 0;
}

.page-gdpr__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-gdpr__text-content {
  flex: 1;
  min-width: 300px;
}

.page-gdpr__image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image--right {
  order: 2;
}

.page-gdpr__image--left {
  order: 1;
}

.page-gdpr__image--center {
  display: block;
  margin: 40px auto;
  max-width: 600px;
}

.page-gdpr__image--bottom {
  display: block;
  margin: 40px auto 0;
  max-width: 400px;
}

.page-gdpr__text-content p {
  margin-bottom: 15px;
  color: #333333; /* Ensure good contrast */
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333; /* Ensure good contrast */
}

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

.page-gdpr__list li strong {
  color: #003366; /* Deep blue for emphasized text */
}

.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: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__right-item h3 {
  color: #003366; /* Deep blue for right item titles */
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-gdpr__right-item p {
  color: #555555;
}

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

.page-gdpr__btn--primary {
  background-color: #FFCC00; /* Gold button */
  color: #003366; /* Deep blue text for contrast */
  border: 2px solid #FFCC00;
}

.page-gdpr__btn--primary:hover {
  background-color: #e6b800; /* Slightly darker gold on hover */
  border-color: #e6b800;
}

.page-gdpr__btn--secondary {
  background-color: transparent;
  color: #003366; /* Deep blue text */
  border: 2px solid #003366;
}

.page-gdpr__btn--secondary:hover {
  background-color: #003366;
  color: #ffffff;
}

.page-gdpr__contact-section {
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }

  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-gdpr__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-gdpr__image--right,
  .page-gdpr__image--left {
    order: unset; /* Reset order for small screens */
  }

  .page-gdpr__image {
    max-width: 100%;
  }

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

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 40px 0;
  }

  .page-gdpr__hero-title {
    font-size: 1.8em;
  }

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

  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}