/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #0A192F; /* Primary dark blue background */
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

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

.page-gdpr__hero-description {
  font-size: 1.3em;
  color: #C0C0C0;
  margin-bottom: 40px;
}

.page-gdpr__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 1;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold accent for CTA */
  color: #0A192F; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-gdpr__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold accent for section titles */
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__section p {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.8;
  color: #E0E0E0;
}

.page-gdpr__section ul {
  list-style: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-gdpr__section ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gdpr__section ul li strong {
  color: #FFD700;
}

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

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  max-width: 40%;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  max-width: 40%;
}

.page-gdpr__contact p {
  text-align: center;
  font-size: 1.2em;
}

.page-gdpr__contact strong {
  color: #FFD700;
}

.page-gdpr__cta-button--bottom {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__hero-description {
    font-size: 1.1em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__section p, .page-gdpr__section ul li {
    font-size: 1em;
  }
  .page-gdpr__image--right, .page-gdpr__image--left {
    float: none;
    margin: 30px auto;
    max-width: 70%;
    display: block;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__section ul {
    margin-left: 20px;
  }
  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__image--right, .page-gdpr__image--left {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__section p, .page-gdpr__section ul li {
    font-size: 0.95em;
  }
  .page-gdpr__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}