/* style/gdpr.css */

/* Variables */
:root {
  --page-gdpr-primary-color: #0A244A;
  --page-gdpr-secondary-color: #FFD700;
  --page-gdpr-text-light: #FFFFFF;
  --page-gdpr-text-dark: #0A244A;
  --page-gdpr-background-light: #F8F8F8;
  --page-gdpr-background-dark: #0A244A;
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-gdpr-text-dark);
  background-color: var(--page-gdpr-background-light);
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, var(--page-gdpr-background-dark) 0%, #1A3B66 100%);
  color: var(--page-gdpr-text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-gdpr__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-gdpr-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: var(--page-gdpr-text-light);
}

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

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

.page-gdpr__section:nth-of-type(odd) {
  background-color: var(--page-gdpr-background-light);
}

.page-gdpr__section:nth-of-type(even) {
  background-color: #EFEFEF;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--page-gdpr-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-gdpr-secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.page-gdpr__text strong {
  color: var(--page-gdpr-primary-color);
}

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

.page-gdpr__grid-item {
  background-color: var(--page-gdpr-text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__item-title {
  font-size: 1.5em;
  color: var(--page-gdpr-primary-color);
  margin-bottom: 15px;
}

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

.page-gdpr__list li {
  background-color: var(--page-gdpr-text-light);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid var(--page-gdpr-secondary-color);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  font-size: 1.1em;
  color: #333;
}

.page-gdpr__list li strong {
  color: var(--page-gdpr-primary-color);
}

.page-gdpr__btn {
  display: inline-block;
  background-color: var(--page-gdpr-secondary-color);
  color: var(--page-gdpr-primary-color);
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-gdpr__btn:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
}

.page-gdpr__btn--contact {
  background-color: var(--page-gdpr-primary-color);
  color: var(--page-gdpr-text-light);
}

.page-gdpr__btn--contact:hover {
  background-color: #1A3B66; /* Slightly lighter primary */
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-gdpr__btn--download,
.page-gdpr__btn--register {
  min-width: 200px;
  text-align: center;
}

.page-gdpr__illustration {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__title {
    font-size: 2.8em;
  }
  .page-gdpr__subtitle {
    font-size: 1.2em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__title {
    font-size: 2.2em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__text, .page-gdpr__list li {
    font-size: 1em;
  }
  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 40px 0;
  }
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-gdpr__btn--download,
  .page-gdpr__btn--register {
    width: 80%;
  }
}