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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A60 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image {
  position: absolute;
  bottom: -20px;
  right: -20px;
  opacity: 0.15;
  width: 200px;
  height: auto;
  z-index: 0;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700;
  position: relative;
  z-index: 1;
}

.page-gdpr__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-gdpr__section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-gdpr__section--alt-bg {
  background-color: #eef4f8;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #0A2342;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
}

.page-gdpr__text {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__highlight {
  color: #0A2342;
  font-weight: bold;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-gdpr__list li {
  margin-bottom: 10px;
  color: #444;
  font-size: 1.1em;
}

.page-gdpr__image {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 30px auto;
  display: block;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
}

.page-gdpr__image--center {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__grid-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #0A2342;
}

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gdpr__grid-item h3 {
  color: #0A2342;
  font-size: 1.4em;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 5px;
}

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

.page-gdpr__section--contact {
  background-color: #0A2342;
  color: #fff;
  text-align: center;
}

.page-gdpr__section--contact .page-gdpr__section-title {
  color: #FFD700;
}

.page-gdpr__section--contact .page-gdpr__section-title::after {
  background-color: #fff;
}

.page-gdpr__section--contact .page-gdpr__text {
  color: #e0e0e0;
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__contact-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-gdpr__contact-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: #fff;
  text-decoration: underline;
}

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

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

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

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

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

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

  .page-gdpr__image {
    float: none;
    margin: 20px auto;
    max-width: 90%;
  }

  .page-gdpr__hero-image {
    width: 120px;
    bottom: 0;
    right: 0;
  }
}

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

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

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