.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for main text on dark background */
  background-color: #121f33; /* Slightly lighter dark blue for overall background */
  line-height: 1.6;
}

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #1A2E47, #0d1a2e); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #ffffff;
}

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

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: #1A2E47; /* Main dark blue for content sections */
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-gdpr__subsection-title {
  font-size: 1.8em;
  color: #ffffff; /* White for sub-section titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-gdpr p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-gdpr__list,
.page-gdpr__numbered-list,
.page-gdpr__contact-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-gdpr__numbered-list {
  list-style-type: decimal;
}

.page-gdpr__list li,
.page-gdpr__numbered-list li,
.page-gdpr__contact-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-gdpr__list strong,
.page-gdpr__numbered-list strong {
  color: #FFD700;
}

.page-gdpr__link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #ffd700cc;
  text-decoration: underline;
}

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

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 30px;
  width: 45%; /* Adjust width for better text wrapping */
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 30px;
  width: 45%; /* Adjust width for better text wrapping */
}

/* Clear floats */
.page-gdpr__content-section::after {
  content: "";
  display: table;
  clear: both;
}

.page-gdpr__cta-wrapper {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #0d1a2e; /* Darker blue for CTA background */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-gdpr__cta-text {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  cursor: pointer;
}

.page-gdpr__button--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2E47; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-gdpr__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-gdpr__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-gdpr__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2E47; /* Dark blue */
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }

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

  .page-gdpr__subsection-title {
    font-size: 1.5em;
  }

  .page-gdpr__image--right,
  .page-gdpr__image--left {
    float: none;
    margin: 30px auto;
    width: 80%;
    display: block;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

  .page-gdpr__hero-subtitle {
    font-size: 1.1em;
  }

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

  .page-gdpr__subsection-title {
    font-size: 1.3em;
  }

  .page-gdpr p,
  .page-gdpr__list li,
  .page-gdpr__numbered-list li,
  .page-gdpr__contact-list li {
    font-size: 1em;
  }

  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-gdpr__cta-text {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }

  .page-gdpr__hero-subtitle {
    font-size: 0.95em;
  }

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

  .page-gdpr__subsection-title {
    font-size: 1.1em;
  }

  .page-gdpr__button {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }

  .page-gdpr__image--right,
  .page-gdpr__image--left {
    width: 95%;
  }
}