/* style/gdpr.css */
.page-gdpr {
  padding-top: var(--header-offset, 120px);
  background-color: #FFFFFF;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
}

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

.page-gdpr__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  margin: 0 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-gdpr__button--register:hover {
  background-color: #F0F0F0;
}

.page-gdpr__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-gdpr__button--login:hover {
  background-color: #E0A83D;
}

.page-gdpr__button--secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.page-gdpr__button--secondary:hover {
  background-color: #333333;
}

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

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

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-gdpr__card {
  background-color: #F8F8F8;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__card-image {
  width: 100%; /* Ensure card images are large enough */
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-gdpr__card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-gdpr__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-gdpr__card-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000000;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-gdpr__card-link:hover {
  background-color: #333333;
}

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

.page-gdpr__list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.page-gdpr__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 50px 30px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
}

.page-gdpr__cta-text {
  font-size: 1.5em;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    height: 500px;
  }

  .page-gdpr__hero-title {
    font-size: 2.5em;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
  }

  .page-gdpr__button {
    display: block;
    margin: 10px auto;
  }

  .page-gdpr__content-area {
    padding: 40px 15px;
  }

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

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

  .page-gdpr__card-image {
    max-width: 100%; /* Ensure card images are large enough on mobile */
  }

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

  .page-gdpr__list {
    padding-left: 0;
  }

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

  /* Ensure all images within .page-gdpr are responsive and do not cause overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }

  .page-gdpr {
    overflow-x: hidden;
  }
}