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

.page-gdpr__hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-gdpr__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 31, 63, 0.8), rgba(255, 215, 0, 0.4)); /* #001F3F and #FFD700 */
  z-index: 2;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 3;
  padding: 20px;
  max-width: 800px;
}

.page-gdpr__title {
  font-size: 3.5em;
  margin-bottom: 10px;
  color: #fff;
  font-weight: bold;
}

.page-gdpr__subtitle {
  font-size: 1.5em;
  color: #eee;
}

.page-gdpr__highlight {
  color: #FFD700;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

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

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #001F3F;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

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

.page-gdpr__introduction p,
.page-gdpr__rights p,
.page-gdpr__processing p,
.page-gdpr__security p,
.page-gdpr__contact p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

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

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

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 30px;
  font-size: 1.1em;
  color: #444;
}

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

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

.page-gdpr__processing-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #001F3F;
}

.page-gdpr__processing-item h3 {
  color: #001F3F;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-gdpr__processing-item p {
  font-size: 1em;
  color: #555;
}

.page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-bottom: 30px;
}

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

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

.page-gdpr__button:hover {
  background-color: #FFD700;
  color: #001F3F;
  transform: translateY(-2px);
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure it takes up full width */
}

.page-gdpr__image--inline {
  max-width: 600px; /* Adjust as needed for inline images */
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2.5em;
  }

  .page-gdpr__subtitle {
    font-size: 1.2em;
  }

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

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

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

  .page-gdpr__hero {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 2em;
  }

  .page-gdpr__subtitle {
    font-size: 1em;
  }

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

  .page-gdpr__list,
  .page-gdpr__introduction p,
  .page-gdpr__rights p,
  .page-gdpr__processing p,
  .page-gdpr__security p,
  .page-gdpr__contact p {
    font-size: 1em;
  }

  .page-gdpr__button {
    padding: 10px 20px;
  }
}